/* トップ〜〜〜 */
section.section-top {
  height: 90vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-top__logo_tate {
  max-width: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* モバイル>>> */
@media (max-width: 480px) {
  .section-top__logo_tate {
    max-width: 60px;
  }
}

/* >>>モバイル */

.section-top__logo_tate img {
  width: 100%;
}

/*---[タイトルアニメーション]---*/
article.sec-intro {
  text-align: center;
  position: relative;
}

svg.intro {
  height: 365px;
  width: 70px;
}

svg.intro .text {
  display: none;
}

svg.intro.go .text {
  font-family: ab-hieros-regular, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  display: block;
}

svg.intro.go .text-stroke {
  fill: none;
  stroke: #fff;
  stroke-width: 10px;
  stroke-dashoffset: -900;
  stroke-dasharray: 900;
  stroke-linecap: butt;
  stroke-linejoin: round;
  animation: dash 1.5s forwards;
}

svg.intro.go .text-stroke:nth-child(2) {
  animation-delay: 0.4s;
}

svg.intro.go .text-stroke:nth-child(3) {
  animation-delay: 0.8s;
}

svg.intro.go .text-stroke:nth-child(4) {
  animation-delay: 1.2s;
}

svg.intro.go .text-stroke:nth-child(5) {
  animation-delay: 2.1s;
}

svg.intro.go .text-stroke:nth-child(6) {
  animation-delay: 2.5s;
}

svg.intro.go .text-stroke:nth-child(7) {
  animation-delay: 2.9s;
}

svg.intro.go .text-stroke-2 {
  stroke: #333;
  animation-delay: 3.8s;
}

@keyframes dash {
  100% {
    stroke-dashoffset: 0;
  }
}

.intro__sub {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  font-weight: 400;
  bottom: 0;
  left: 50%;
  transform: translateX(-130px) translateY(-304px) rotate(-360deg);
  letter-spacing: 6.2px;
  font-size: 16px;
  opacity: 0;
}

.intro__sub.go {
  opacity: 1;
  transition: 1s;
  transform: translateX(-111px) translateY(-71px) rotate(90deg);
}

/*---[タイトルアニメーション]END*/

/* 〜〜〜トップ */

/* VISION~~~ */
section.section-vision {
  background-color: #f2b886;
  padding: 100px 0;
}

.section-vision__subtitle {
  display: flex;
  justify-content: center;
  padding: 0 0 40px 0;
}

ul.section-vision__subtitle--text {
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.section-vision__subtitle--photo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -250px;
}

.section-vision__subtitle--photo img {
  width: 100%;
}

.section-vision__mob-photo {
  display: none;
}

h5.section-vision__comment {
  max-width: 400px;
  text-align: left;
  margin: 0 auto;
  line-height: 1.5;
  text-indent: -1rem;
  padding: 0 0 40px 0;
  letter-spacing: -0.02rem;
}


/* タブレット>>> */
@media (max-width: 1024px) {
  .section-vision__subtitle {
    padding: 0 0 40px 0;
  }

  .section-vision__subtitle--photo {
    display: none;
  }

  .section-vision__mob-photo {
    display: block;
  }

  .section-vision__subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* >>>タブレット */

/* モバイル>>> */
@media (max-width: 480px) {
  section.section-vision {
    padding: 80px 0;
  }

  .section-vision__subtitle {
    padding: 0 0 20px 0;
  }


  h5.section-vision__comment {
    max-width: 270px;
  }

  ul.section-vision__subtitle--text {
    max-height: 60px;
  }
}

/* >>>モバイル */

/* ~~~VISION */

/* WORKS~~~ */
section.section-works {
  background-color: #ffe1b7;
  padding: 100px 80px;
  width: 100%;
}

ul.section-works__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  margin: 0 0 100px 0;
}

.section-works__list li {
  height: 200px;
  margin: 0 0 40px 0;
}

.section-works__list img {
  height: 100%;
}

.section-works__list h5 {
  margin: 10px 0 0 0;
  font-weight: 500;
}

/* モバイル>>> */
@media (max-width: 480px) {
  section.section-works {
    padding: 80px 0;
  }

  .section-works__list li {
    max-height: 140px;
  }

  ul.section-works__list {
    margin: 0 0 40px 0;
  }

  .section-works__list li:nth-child(2) {
    display: none;
  }
}

/* >>>モバイル */

/* ~~~WORKS */