@charset "UTF-8";
/* CSS Document */
body.about-page {
  background-color: #ffffff;
}

/* 共通 */
.history {font-size: 16px;
font-weight: 550;
  padding: 0 20px 40px;
	margin-top: 10%;
}

.history h2{
	
	    margin-bottom: 5vw;
    display: flex
;
    align-items: center;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
    font-weight: 600;
}

.history h2::before,
.history h2::after {
    content: '';
    height: 1px;
    background: #d6d1c9;
    flex: 1;
    margin: 0 4vw;
}


.history-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.history-images {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.history-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.history-content {
	
  flex: 1;
}
.history-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.history-item .year {
  
  min-width: 80px;
}
.history-item .event {
	
}

/* SP：写真を非表示、縦並びにする */
@media screen and (max-width: 768px) {
  .history-container {
    flex-direction: column;
  }

  .history-item {
    flex-direction: column;
    gap: 5px;
  }
  .history-item .year {
    font-size: 12px;
  }
  .history-item .event {
    font-size: 15px;
  }
}


.bio-block {font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
    font-weight: 600;
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.bio-img {
  flex: 0 0 50%;
  overflow: hidden;
}
.bio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; /* ← ここで縦中央寄せ */
  padding: 40px;
}

.bio-inner {
  text-align: left;
}

.bio-year { text-align: center;
  font-size: 35px;
  margin-bottom: 10px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
    font-weight: 500;
}

.bio-text p,
.bio-desc {
  font-size: 16px;
  line-height: 2;
  color: #444;font-weight: 600;
	margin-top: 3%;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .bio-block {
    flex-direction: column;
    height: auto;
  }

  .bio-img {
    flex: none;
    height: 300px;
  }
  .bio-img img {
    object-position: top;
  }
  .bio-text {
    padding: 0px;
    align-items: flex-start;
  }

  .bio-inner {
    text-align: left;
  }

  .bio-year {
    font-size: 22px;
  }

  .bio-desc {
    font-size: 15px;
  }
	
	.bio-desc p{ line-height:140%; margin-bottom:10%;}
}
