@charset "utf-8";
.about__img {
  border-radius: var(--border-radius-lg);
}

.about__title-wrap {
  align-items: center;
  display: flex;
}

.about__title {
  font-size: 4.5rem;
  line-height: 1;
  margin-left: 1em;
}

.about__text {
  margin: 1em 0 1.5em;
}

/* ================================================================
  PC版のみレイアウト
================================================================ */
@media screen and (min-width: 768px) {
  .content-hero {
    margin-top: 3.906vw;
  }

  .content-about .content__body {
    align-items: flex-start;
    display: flex;
    position: relative;
  }

  .about-wrap {
    flex: 1;
    margin-right: 4.167vw;
  }
  
  .about {
    align-items: center;
    display: flex;
    min-height: 100vh;
    margin-bottom: 9.63541vw;
  }
  
  .about__img-wrap {
    position: sticky;
    right: 0;
    top: 0;
    width: 53.64583vw;
    min-height: 100vh;
    pointer-events: none;
  }

  .about__img {
    position: absolute;
    top: calc(50% - 17.96875vw);
  }

  .aos-animate.about__img {
    transition-delay: .8s;
  }

}

/* ================================================================
  スマホ版レイアウト
================================================================ */
@media screen and (max-width: 767px) {
  .about {
    margin-bottom: 21.333vw;
  }

  .about__body {
    margin-top: -13.333vw;
    text-align: center;
    position: relative;
  }

  .about__title {
    font-size: 2.2rem;
  }

  .about__text {
    text-align: left;
  }

  .illust-about {
    width: 13.333vw;
  }

  /* お知らせ */
  .news-lists--top {
    flex-wrap: nowrap;
    margin: 0 -5.333vw;
    overflow-x: auto;
    padding: 0 5.333vw 2.667vw;
  }
 
  .news-lists--top .news-list {
    flex-shrink: 0;
    padding: 0 8vw 0 0;
    width: 76vw;
  }

  .news-lists--top .news__title {
    min-height: 3em;
  }

}