@charset "utf-8";
@media screen and (min-width: 820px) {
  .mainvisual{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .mainvisual .img-box{
    height: 50vh;
    width: 65vw;
  }
  h1{
    font-size: 220%;
    letter-spacing: 1px;
    margin: 20px auto 50px;
  }
  .page-lead{
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
  }
  .section{
    width: 95%;
    max-width: 900px;
    overflow: hidden;
  }
  .life-schedule-table ul{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .life-schedule-table ul::before{
    display: none;
  }
  .life-schedule-table ul li{
    width: calc(90% / 3);
    margin: 0 0 30px;
    padding: 8px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .life-schedule-table ul li:not(:first-of-type)::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid var(--page_color);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: -10%;
    margin: auto;
  }

  .life-item h3{
    font-size: 150%;
    padding: 7px 20px;
  }
}