.section_front_top {
  padding: 0;
  width: 100%;
  height: 70vh;
  position: relative;
  margin: 0;
  background: linear-gradient(-12deg, var(--main-color), var(--accent-color));
  /* &::before {
    content: "";
    background-image: url('../img/wave_top_sp.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 15;
    position: absolute;
    bottom: -100px;
    left: 0;
    height: 275px;
    width: 100%;
  } */
}
.section_front_top {
  position: relative;
  overflow: hidden;
  .top_img_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
  }
  .top_img_wrap::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--top-img-color); */
    background-color: var(--white);
    mix-blend-mode: screen;
    opacity: 60%;
    z-index: 10;
  }
  .wp-block-image.top_img {
    height: 100%;
    text-align: right;
    margin: 0;
    z-index: 1;
  }
  .top_img img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .top_catch {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 35%;
    z-index: 20;
    /* transition: all ease 1.5s; */
  }
  .top_catch .catch_wrap {
    text-align: center;
    color: var(--white);
    /* font-family: var(--top-font); */
    font-size: 2.5rem;
    /* transform: scale(0.8); */
  }
  .lead {
    font-weight: 100;
    font-size: 1.5rem;
    padding-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .section_front_top {
    max-width: 100%;
    height: 600px;
    .top_img img {
      object-fit: cover;
      object-position: center;
    }
    .lead {
      font-size: 2rem;
      padding-top: 1.5rem;
    }
    .top_catch .catch_wrap {
      font-size: 3rem;
    }
  }
}

/* 波アニメーション */
.top_wave_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 5;
  img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    max-width: none;
    animation: waveMove cubic-bezier(.55,.5,.45,.5) infinite;
  }
  .wave4 {
    opacity: 0.3;
    animation-duration: 12s;
    animation-delay: -2s;
    left: 5%;
  }
  .wave3 {
    opacity: 0.5;
    animation-duration: 20s;
    animation-delay: -4s;
    left: 10%;
  }
  .wave2 {
    opacity: 0.7;
    animation-duration: 28s;
    animation-delay: -7s;
  }
  .wave1 {
    opacity: 1;
    animation-duration: 40s;
    animation-delay: -11s;
  }
}
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .top_wave_wrap {
    img {
    }
  }
}

.section_inner {
  padding: 5rem 2.5rem;
  background: var(--section-bg-color);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto;
  border-radius: var(--border-radius);
  @media (min-width: 1024px) {
    padding: 5rem;
    gap: 5rem;
    grid-template-columns: 3fr 7fr;
    border-radius: 10px;
  }
}

.section_front_news {
  /* padding: 11rem 0 0; */
  .btn {
    text-align: right;
  }
}
.section_front_news .section_inner,
.section_front_schedule .section_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .section_front_news {
    /* padding: 7rem 0 0; */
  }
  .section_front_news .section_inner,
  .section_front_schedule .section_inner {
    grid-template-columns: 3fr 7fr;
    gap: 3rem;
  }
}

.section.section_front_job {
  width: 100%;
  max-width: 100%;
  margin: 0;
  .section_inner {
    display: block;
    text-align: center;
    border-radius: 0;
    background: url(/wp-content/themes/sotobo-lab_theme/assets/img/top_philosophy_bg.jpg) no-repeat bottom left;
    background-size: cover;
    position: relative;
    z-index: 0;
    overflow: hidden;
    color: var(--white);
    &::before {
      content: '';
      background: inherit;
      -webkit-filter: blur(5px);
      -moz-filter: blur(5px);
      -o-filter: blur(5px);
      -ms-filter: blur(5px);
      filter: blur(5px);
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      z-index: -1;
    }
    &::after {
      content: '';
      background-color: #00aaff;
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      z-index: -1;
      mix-blend-mode: multiply;
      opacity: 50%;
    }
  }
  .section_title_sub {
    color: var(--white);
  }
  .wp-block-list.front_job_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border: 1px solid var(--grey-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 50rem;
    margin: 1.25rem auto 0;
  }
  .front_job_list li {
  }
  ul.wp-block-list.front_job_list li:before{
    background: var(--white);
  }
  p {
    padding-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .section.section_front_job {
    .wp-block-list.front_job_list {
      flex-direction: row;
      gap: 3rem;
    }
  }
}