/* キービジュアル */
.kv-by {
  background: url('/wp-content/themes/swell_child/edit/img/kv-history-by.jpg') no-repeat center;
  background-size: cover;
  height: 498px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-big-by);
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1024px){
  .kv-by {
    height: 200px;
  }
}
.kv-by::after {
  background: url("/wp-content/themes/swell_child/edit/img/kv-wave.svg");
  bottom: 0;
  content: '';
  height: 90px;
  position: absolute;
  width: 100%;
}
@media (max-width: 1024px){
.kv-by::after {
    background: url("/wp-content/themes/swell_child/edit/img/kv-wave.svg") center;
    height: 28px;
    bottom: -5px;
  }
}


/* 歴史のolの点線 */
.history_ol-poka::before {
    content: "";
    display: block;
    z-index: -1;
    width: 1px;
    height: calc(100% - 500px);
    background-image: linear-gradient(to bottom, var(--sub_color-by) 0%, #008fcf 50%, transparent 50%, transparent 100%);
    background-size: 100% 16px;
    background-repeat: repeat-y;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 歴史のli */
.history_ol-poka li {
  display: flex;
  gap: 0px;
  border: solid 2px var(--sub_color-by);
  background-color: #fff;
  border-radius: 30px;
}
.history_ol-poka li:not(:last-child) {
  margin-bottom: 120px;
}
@media (max-width: 768px){
  .history_ol-poka li {
    display: block;
  }
  .history_ol-poka li:not(:last-child) {
    margin-bottom: 80px;
  }
}

/* 歴史の画像 */
.history_ol_img-poka {
  width: 50%;
}
.history_ol_img-poka img {
  border-radius: 30px 0 0 0;
}
@media (max-width: 768px){
  .history_ol_img-poka {
    width: 100%;
  }
  .history_ol_img-poka img {
    border-radius: 30px 30px 0 0;
  }
}

/* 歴史の画像のキャプション */
.history_ol_img-poka span {
  font-size: var(--fs-text-by);
  color: #ccc;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 768px){
  .history_ol_img-poka span {
    margin-bottom: 16px;
  }
}

/* 歴史部分 */
.history_ol_text-poka {
  padding: 32px;
  width: 50%;
}
@media (max-width: 768px){
  .history_ol_text-poka {
    width: 100%;
    padding: 8px 16px 24px 16px;
  }
}
/* 歴史の年号 */
.history_ol_text-poka span {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: var(--fs-middle-by);
  color: var(--black_color-by);
}
.history_ol_text-poka span:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: var(--black_color-by);
  left:0;
}

/* 歴史の見出し */
.h-left_line-by {
  font-size: var(--fs-middle-by) !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

/* 歴史のテキスト */
.history_ol_text-poka p {
  font-size: var(--fs-text-by);
  color: var(--black_color-by);
}


/* 歴代店主のflex */
.owner-box-poka {
  display: flex;
  gap: 16px;
  text-align: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px){
  .owner-box-poka {
    flex-wrap: wrap;
  }
}

/* 歴代店主の名前 */
.owner-name-poka {
    font-size: var(--fs-small-by);
    color: var(--black_color-by);
  }

/* 歴代店主の肩書 */
.owner-text-poka {
  font-size: var(--fs-mini-by);
  color: var(--black_color-by);
}

/* 歴代店主の画像 */
.owner-box-poka div {
  width: calc(25% - 8px);
}
@media (max-width: 768px){
  .owner-box-poka div {
    width: calc(50% - 8px);
  }
}