/* メインビジュアル */
@media screen and (max-width: 767px) {
  .page_mv--img img {
    object-position: calc(100% + 128px) center;
  }
}

/* ページ内リンク */
.page_link {
  margin-bottom: -86px;
  @media screen and (max-width: 767px) {
    margin-bottom: -30px;
  }
}

/* 会長挨拶 */
.greetings {
  padding: calc(var(--space-75) * 2) 0 var(--space-75);
  position: relative;
  background: none;
  @media print, screen and (min-width: 768px) {
    background: url(../img/bg_img01.webp) no-repeat right top;
  }
}
.greetings .cmn_heading--en {
  position: absolute;
  top: var(--space-75);
  right: 0.05em;
}
.greetings_flex {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 20px 30px;
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.greetings_name {
  text-align: end;
}
@media print, screen and (min-width: 768px) {
  .greetings_person {
    min-width: 232px;
  }
}

/* 会社概要 */
.overview {
  position: relative;
}
.overview .cmn_heading--en {
  position: absolute;
  top: 0.125em;
  right: 0.05em;
}
.table_2column {
  margin-bottom: var(--space-55);
  margin-top: 1em;
}
.overview_ninsho {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
  }
}

/* 沿革 */
.history {
  position: relative;
  background: url(../img/bg_img02.webp) top center / cover no-repeat;
  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2862A6 0%, #008E99 50%, #0e868b 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.history .cmn_heading--en {
  position: absolute;
  top: 0.125em;
  right: 0.05em;
}
.history_timeline {
  color: #fff;
  font-weight: bold;
  margin: 45px auto 0;
  @media screen and (max-width: 767px) {
    margin: 30px auto 0;
  }
}
.history_timeline--item {
  display: flex;
}
.history_timeline--year {
  padding: 0 60px 2em 0;
  border-right: 2px dashed #fff;
  text-align: center;
  white-space: nowrap;
  span {
    font-size: var(--font-48);
    font-weight: 900;
    line-height: 1;
  }
  @media screen and (max-width: 767px) {
    min-width: 102px;
    padding-right: 12px;
    font-size: 1.4rem;
    line-height: 1.8;
    span {
      font-size: 2.4rem;
    }
  }
}
.history_timeline--item:last-child .history_timeline--year {
  padding-bottom: 0;
}
.history_timeline--content {
  padding: 10px 0 2em;
  &:has(figure) {
    display: flex;
    align-items: flex-start;
    gap: 1em 3em;
  }
  @media screen and (max-width: 767px) {
    padding-top: 0;
    &:has(figure) {
      flex-wrap: wrap;
    }
  }
}
.history_timeline--txt {
  padding-left: 18px;
  display: flex;
  align-items: flex-start;
  gap: 1em;
  position: relative;
  &::before {
    content: "";
    display: inline-block;
    min-width: 40px;
    height: 2px;
    background: #00CDD6;
    margin-top: calc(1em - 1px);
  }
  &::after {
    content: "";
    min-width: 15px;
    aspect-ratio: 1/ 1;
    display: block;
    border-radius: 50%;
    background: #00CDD6;
    position: absolute;
    left: -1px;
    top: 1em;
    transform: translate(-50%, -50%);
  }
  @media screen and (max-width: 767px) {
    padding-left: 12px;
    gap: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .history_timeline--txt::before {
    min-width: 20px;
  }
}
.history_timeline--content figure {
  display: flex;
  align-items: center;
  gap :10px;
  margin: 0 0 0 auto;
  @media print, screen and (min-width: 768px) {
    min-width: 183px;
  }
  @media screen and (max-width: 767px) {
    max-width: calc(100% - 32px - 0.5em);
    width: 100%;
    gap: 5px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .history_timeline--content figure.sp_tyouseigazou {
    align-items: stretch;
    img {
      object-fit: cover;
    }
  }
}
@media screen and (max-width: 767px) {
  .history_timeline--content figure img {
    max-width: calc(50% - 2.5px);
    width: 100%;
  }
}
.history_timeline--figcaption {
  font-size: var(--font-14);
  font-weight: normal;
  line-height: 1.5;
  @media screen and (max-width: 767px) {
    max-width: calc(50% - 2.5px);
    font-size: 1.3rem;
  }
}
.history_timeline--content figure:has(figcaption) {
  flex-direction: column;
  text-align: center;
  gap: 5px;
  @media screen and (max-width: 767px) {
    align-items: flex-start;
  }
}