main {
  margin-top: var(--header_h);
  margin-bottom: var(--mb);
}

.scene__inner {
  max-width: 1100px;
}
.scene__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 50px;
}
.scene__item {
  padding: 40px 50px;
  background: #f6f5ef;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scene__item {
    padding: 20px 25px;
  }
}
.scene__item:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: inline-block;
  bottom: 0;
  left: 50%;
  background: var(--c_gold);
  border-radius: 50%;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  translate: -50% 50%;
}
@media screen and (max-width: 767px) {
  .scene__item:not(:last-child)::after {
    width: 25px;
  }
}
.scene__item:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  background: var(--c_white);
  mask-image: url(/casestudy/scene/img/arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 28px;
  height: auto;
  aspect-ratio: 28/27;
  translate: -50% 50%;
}
@media screen and (max-width: 767px) {
  .scene__item:not(:last-child)::before {
    width: 14px;
  }
}
.scene__image {
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .scene__image {
    max-width: 100%;
  }
}
.scene__text {
  margin-top: 50px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .scene__text {
    margin-top: 25px;
    font-size: 14px;
  }
}
.scene__title {
  margin-top: 0;
}
.scene__container {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .scene__container {
    flex-direction: column-reverse;
    gap: 25px;
  }
}
.scene__bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.scene__btn {
  margin-inline: auto;
}

.detail__area {
  margin-top: 40px;
}
.detail__head {
  padding-left: 18px;
  border-left: 7px solid var(--c_gold);
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .detail__head {
    font-size: 20px;
    padding-left: 9px;
    border-left: 3px solid var(--c_gold);
  }
}
.detail__content {
  background: var(--c_white);
  padding: 45px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .detail__content {
    padding: 20px 25px;
    margin-top: 9px;
  }
}
.detail__text {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .detail__text {
    font-size: 14px;
  }
}
.detail__text--mt {
  margin-top: 1em;
}
.detail__text--gold {
  font-size: 20px;
  font-weight: 700;
  color: var(--c_gold);
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .detail__text--gold {
    font-size: 18px;
  }
}
.detail__image {
  max-width: 500px;
  width: 100%;
  margin-top: 40px;
}

/*# sourceMappingURL=style.css.map */
