@charset "UTF-8";
.main-visual__inner {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 34.9% 54.2%;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
@media screen and (max-width: 1024px) {
  .main-visual__inner {
    grid-template-columns: 1fr;
  }
}
.main-visual__images {
  display: inline-grid;
  align-items: end;
  position: relative;
  width: 92%;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0;
}
.main-visual__images img {
  width: 100%;
  max-width: 165px;
}
.main-visual__images-border {
  position: relative;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .main-visual__images {
    display: none;
  }
}
.main-visual__copy {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 5.555vw;
  line-height: 146%;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}
.main-visual__copy > div {
  overflow: hidden;
}
.main-visual__copy > div > span {
  display: inline-block;
  transform: translateY(100%);
  animation: upIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-delay: 1.2s;
}
.main-visual__copy > div:nth-of-type(2) span {
  animation-delay: 1.3s;
}
.main-visual__copy > div:nth-of-type(3) span {
  animation-delay: 1.4s;
}
@keyframes upIn {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
.main-visual__copy.top-line::before {
  top: 4%;
}
.main-visual__copy.bottom-line::after {
  bottom: 5%;
}
@media screen and (max-width: 1024px) {
  .main-visual__copy {
    font-size: 41px;
    line-height: 116%;
  }
}
@media screen and (min-width: 1440px) {
  .main-visual__copy {
    font-size: 80px;
  }
}
.main-visual__copy span.theme-color {
  color: var(--theme-color);
}
.main-visual__copy--sub {
  display: grid;
  justify-content: space-between;
  margin-top: -2px;
  padding-bottom: 42px;
  grid-template-columns: 34.9% 54%;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
@media screen and (max-width: 1024px) {
  .main-visual__copy--sub {
    margin-top: 8px;
    padding-bottom: 55px;
    grid-template-columns: 1fr;
  }
}
.main-visual__copy--sub p {
  padding-left: 10%;
  font-style: normal;
  font-weight: 700;
  font-size: 0.972vw;
  line-height: 21px;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.085em;
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 1024px) {
  .main-visual__copy--sub p {
    padding-left: 0;
    font-size: 14px;
    grid-area: auto;
  }
}
@media screen and (min-width: 1440px) {
  .main-visual__copy--sub p {
    font-size: 14px;
  }
}
.main-visual__copy-wrapper {
  margin-right: -12%;
  padding-bottom: 5px;
  padding-left: 10%;
}
@media screen and (max-width: 1024px) {
  .main-visual__copy-wrapper {
    padding-bottom: 0;
    padding-left: 0;
    padding-top:60px;
  }
}
.main-visual__main-image-wrapper {
  opacity: 0;
  position: relative;
  margin-right: -120px;
  padding-bottom: 9%;
  line-height: 0;
  animation: fadeIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-delay: 2s;
}
@media screen and (max-width: 1024px) {
  .main-visual__main-image-wrapper {
    margin-right: -26px;
    padding-bottom: 91px;
  }
  .main-visual__main-image-wrapper.bottom-line::after {
    left: calc(50% - 11px);
  }
}
.main-visual__main-image-wrapper img {
  width: 100%;
}
.main-visual__arrow {
  position: absolute;
  bottom: 0;
  width: 11.8%;
}
@media screen and (max-width: 1024px) {
  .main-visual__arrow {
    width: 25%;
  }
}
.main-visual__arrow::before, .main-visual__arrow::after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: var(--base-border-color);
  content: "";
}
@media screen and (max-width: 1024px) {
  .main-visual__arrow::before {
    top: auto;
    right: -186%;
    bottom: 26%;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--theme-color);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    font-family: "IBM Plex Sans JP";
    letter-spacing: 0.25em;
    white-space: nowrap;
    content: "豊開発を深掘る";
  }
}
.main-visual__arrow::after {
  top: -30px;
}
@media screen and (max-width: 1024px) {
  .main-visual__arrow::after {
    content: none;
  }
}
.main-visual__line {
  position: relative;
  line-height: 0;
}
.main-visual__line::before {
  display: block;
  position: absolute;
  bottom: -42%;
  left: 1px;
  z-index: 0;
  transform: rotate(45deg) translateX(-32%);
  width: 109.5%;
  height: 1px;
  background-color: var(--base-border-color);
  content: "";
}
@media screen and (max-width: 1024px) {
  .main-visual__line::before {
    content: none;
  }
}
.main-visual__anim-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.main-visual__anim-wrap::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base-bg-color);
  content: "";
  animation: slide 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-delay: 0.2s;
}
.main-visual__anim-wrap:nth-of-type(2)::after {
  animation-delay: 0.4s;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

.about {
  opacity: 0;
  position: relative;
  padding-top: 6.9%;
  animation: fadeIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-play-state: paused;
}
.about.inview {
  animation-play-state: running;
}
@media screen and (max-width: 1024px) {
  .about {
    padding-top: 66px;
  }
}
.about__images-wrapper {
  width: 62.5%;
}
@media screen and (max-width: 1024px) {
  .about__images-wrapper {
    width: 100%;
  }
}
.about__images-wrapper > div {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0;
}
.about__images-wrapper::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: var(--base-border-color);
  content: "";
}
@media screen and (max-width: 1024px) {
  .about__images-wrapper::before {
    width: 100vw;
  }
}
.about__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .about__text-wrapper {
    align-items: flex-start;
    position: relative;
    padding-top: 40px;
  }
}
.about__title {
  padding-right: 6.7%;
  padding-bottom: 3%;
  color: var(--theme-color);
  font-style: normal;
  font-weight: 700;
  font-size: 1.736vw;
  line-height: 140%;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.14em;
}
@media screen and (max-width: 1024px) {
  .about__title {
    padding-bottom: 16px;
    font-size: 20px;
    letter-spacing: normal;
  }
}
@media screen and (min-width: 1440px) {
  .about__title {
    font-size: 25px;
  }
}
.about__title > span {
  padding-right: 8%;
}
@media screen and (max-width: 1024px) {
  .about__title > span {
    padding: 0;
  }
}
.about__desc {
  padding-bottom: 3%;
  font-size: 1.041vw;
  line-height: 133%;
  letter-spacing: 0.15em;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .about__desc {
    padding-bottom: 41px;
    font-size: 14px;
    line-height: 171%;
    text-align: left;
    text-align: justify;
    font-feature-settings: "palt";
  }
}
@media screen and (min-width: 1440px) {
  .about__desc {
    font-size: 15px;
  }
}
.about__link {
  padding-right: 8.2%;
}

.feature {
  opacity: 0;
  position: relative;
  padding-top: 210px;
  animation: fadeIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-play-state: paused;
}
.feature.inview {
  animation-play-state: running;
}
@media screen and (max-width: 1024px) {
  .feature {
    padding-top: 157px;
  }
}
.feature > div {
  position: relative;
}
.feature__img {
  position: absolute;
  right: -110px;
  bottom: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .feature__img {
    top: 0;
    right: -26px;
    bottom: auto;
    width: 33.5%;
    max-width: 124px;
    height: auto;
  }
}
.feature__desc {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  font-family: "Noto Sans JP";
  letter-spacing: 0.1em;
  text-align: justify;
  font-feature-settings: "palt";
}
.feature__heading {
  margin-bottom: 14px;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.1em;
}
.feature__inner {
  display: grid;
  width: 67.5%;
  grid-template-columns: 1.85fr 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .feature__inner {
    width: 100%;
    margin-bottom: 41px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}
.feature__inner img {
  margin-bottom: 20px;
}
.feature__inner--grid1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid1 {
    display: block;
    grid-area: 1/1/2/3;
  }
}
.feature__inner--grid1 img {
  max-width: 146px;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid1 img {
    margin-bottom: 60px;
  }
}
.feature__inner--grid2 {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  letter-spacing: 0.1em;
  text-align: justify;
  grid-area: 2/1/3/2;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid2 {
    grid-area: 2/1/3/3;
  }
}
.feature__inner--grid2 p {
  max-width: 250px;
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid2 p {
    max-width: none;
    padding-bottom: 40px;
    line-height: 171%;
  }
}
.feature__inner--grid3 {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid3 {
    grid-area: 3/1/4/2;
  }
}
.feature__inner--grid4 {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid4 {
    grid-area: 4/1/5/2;
  }
}
.feature__inner--grid4 img {
  margin-bottom: 28px;
}
.feature__inner--grid5 {
  grid-area: 1/3/2/4;
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid5 {
    grid-area: 3/2/4/3;
  }
}
.feature__inner--grid6 {
  grid-area: 2/3/3/4;
}
@media screen and (max-width: 1024px) {
  .feature__inner--grid6 {
    grid-area: 4/2/5/3;
  }
}
.feature__inner--grid6 img {
  margin-bottom: 25px;
}

.step {
  opacity: 0;
  position: relative;
  padding-top: 202px;
  animation: fadeIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-play-state: paused;
}
.step.inview {
  animation-play-state: running;
}
@media screen and (max-width: 1024px) {
  .step {
    padding-top: 163px;
  }
}
.step__sticky {
  position: sticky;
  top: 80px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .step__sticky {
    position: relative;
    top: 0;
  }
}
.step__title {
  margin-right: -5%;
  margin-bottom: 15%;
  margin-top:1%;
  font-style: normal;
  font-weight: 700;
  font-size: 4.027vw;
  line-height: 112%;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
}
.step__title span {
  color: var(--theme-color);
}
@media screen and (max-width: 1024px) {
  .step__title {
    margin-right: 0;
    margin-bottom: 13px;
    font-size: 29px;
    line-height: 114%;
  }
}
@media screen and (min-width: 1440px) {
  .step__title {
    font-size: 58px;
  }
}
.step__sub-title {
  display: block;
  margin-bottom: 43px;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  /* font-family: "IBM Plex Mono"; */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .step__sub-title {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.step__desc {
  margin-bottom: 137px;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.1em;
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .step__desc {
    margin-bottom: 70px;
  }
}
.step__inner {
  display: grid;
  grid-template-columns: 30% auto;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0;
}
@media screen and (max-width: 1024px) {
  .step__inner {
    grid-template-columns: 1fr;
  }
}
.step__title-wrapper {
  position: relative;
}
.step__list {
  display: grid;
  padding-top: 6px;
  grid-template-columns: 52% auto;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 45px;
}
@media screen and (max-width: 1024px) {
  .step__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    grid-row-gap: 34px;
  }
}
.step__item-desc {
  position: relative;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.1em;
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .step__item-desc {
    margin-bottom: 17px;
    line-height: 171%;
  }
  .step__item-desc.bottom-line::after {
    content: none;
  }
}
.step__item-title {
  margin-bottom: 28px;
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 120%;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .step__item-title {
    margin-bottom: 11px;
    font-size: 20px;
    line-height: 1;
  }
}
.step__item-link {
  position: relative;
  padding-top: 25px;
}

.step__item-link:hover {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .step__item-link.top-line::before {
    content: none;
  }
}
.step__item {
  position: relative;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .step__item:nth-of-type(odd).bottom-line::after {
    content: none;
  }
  .step__item:nth-of-type(even) {
    padding-bottom: 40px;
  }
}
.step__sp-wrapper {
  position: relative;
}

.works {
  opacity: 0;
  padding-top: 205px;
  animation: fadeIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-play-state: paused;
}
.works.inview {
  animation-play-state: running;
}
@media screen and (max-width: 1024px) {
  .works {
    padding-top: 163px;
  }
}
.works__title {
  margin-bottom: 28px;
}
.works__desc {
  width: 30%;
  margin-bottom: 86px;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.1em;
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .works__desc {
    width: 100%;
    margin-bottom: 70px;
  }
}
.works__inner {
  position: relative;
}
.works__work-title {
  margin-bottom: 9px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .works__work-title {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 125%;
  }
}
.works__work-desc {
  margin-bottom: 16px;
  color: #aeaeae;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 167%;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
}
.works__work-img {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .works__work-img {
    margin-bottom: 25px;
  }
}
.works__work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 86px;
}
.works__work-list--grid1 {
  position: relative;
  grid-area: 1/1/2/2;
}
.works__work-list--grid2 {
  grid-area: 1/2/2/3;
}
.works__work-list--grid3 {
  position: relative;
  grid-area: 2/1/3/2;
}
.works__work-list--grid4 {
  grid-area: 2/2/3/3;
}
.works__sp-wrapper {
  position: relative;
  padding-top: 63px;
}

.asobu {
  position: relative;
  padding-top: 200px;
}
.asobu__inner {
  position: relative;
}
.asobu__title {
  margin-bottom: 30px;
}
.asobu__desc {
  width: 30%;
  margin-bottom: 90px;
  font-size: 14px;
  line-height: 157%;
  letter-spacing: 0.1em;
  text-align: justify;
  font-feature-settings: "palt" on;
}
@media screen and (max-width: 1024px) {
  .asobu__desc {
    width: 100%;
  }
}
.asobu__item-title {
  margin-bottom: 60px;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .asobu__item-title {
    margin-bottom: 30px;
  }
}
.asobu__item-copy {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
}
.asobu__item {
  position: relative;
}
.asobu__item:first-of-type {
  margin-bottom: 31%;
}
.asobu__item:last-of-type .asobu__item-inner {
  width: 30%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .asobu__item:last-of-type .asobu__item-inner {
    width: 100%;
  }
}
.asobu__img--art {
  position: absolute;
  right: 6.9%;
  bottom: 2%;
  width: 48.8%;
  line-height: 0;
}
.asobu__img--art:before {
  display: block;
  position: absolute;
  bottom: 221%;
  left: 1px;
  z-index: 0;
  transform: rotate(-45deg) translateX(-96.9%);
  width: 200%;
  height: 1px;
  background-color: var(--base-border-color);
  content: "";
}
@media screen and (max-width: 1024px) {
  .asobu__img--art {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 34px;
  }
  .asobu__img--art:before {
    top: 0;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }
}
.asobu__img--media {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 48.8%;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .asobu__img--media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 34px;
  }
  .asobu__img--media:before {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: var(--base-border-color);
    content: "";
  }
}

.news {
  opacity: 0;
  padding-top: 204px;
  animation: fadeIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-play-state: paused;
}
.news.inview {
  animation-play-state: running;
}
@media screen and (max-width: 1024px) {
  .news {
    padding-top: 163px;
  }
}
.news > div {
  position: relative;
  width: 100%;
}
.news__img {
  position: absolute;
  top: 0;
  right: -110px;
  width: 46%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .news__img {
    display: none;
  }
}
.news__title {
  margin-bottom: 85px;
}
@media screen and (max-width: 1024px) {
  .news__title {
    margin-bottom: 37px;
  }
}
.news__inner {
  position: relative;
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .news__inner {
    width: 100%;
  }
}
.news__list {
  margin-bottom: 58px;
}
.news__item {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000000;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.15em;
}
.news__item span:first-of-type {
  padding-right: 31px;
}
.news__item a {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .news__item a {
    flex-direction: column;
    gap: 16px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=top.css.map */