#page-story {
  margin-bottom: -64px;
}

.section-story {
  margin-top: 64px;
  padding: 64px 0;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background-image: url("/images/story_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  gap: 32px;
}

.story-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.story-content p {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 1200px;
  gap: 32px;
}
.story-overview {
  font-size: clamp(20px, calc(var(--aspect-base) * 32), 32px);
  font-weight: 400;
}
.story-description {
  font-size: clamp(14px, calc(var(--aspect-base) * 18), 18px);
  line-height: clamp(21px, calc(var(--aspect-base) * 27), 27px);
}

.story-bg-sp {
  display: none;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 960px) {
  .section-story {
    margin-top: 0px;
    background: none;
  }
  .story-bg-sp {
    display: block;
  }
  .story-overview {
    line-height: 30px;
  }

  .story-content {
    width: auto;
    display: inline-flex;
    box-sizing: border-box;
    padding: 0 12px;
    margin: 0 auto;
  }

  .story-content p {
    width: 100%;
    text-align: left;
    margin-left: 16px;
    margin-right: 16px;
  }
}
