.actual-detail {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 0 0 160px 0;
}
.actual-detail .content-wrapper {
  align-items: center;
}
.actual-detail__top-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 24px;
  max-width: 940px;
  width: 100%;
  height: 100%;
}
.actual-detail__back-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 54px;
  margin-bottom: 30px;
  background-color: #fff;
  color: #231F20;
  border: 1px solid #FDB714;
  border-radius: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
.actual-detail__back-button:before {
  content: "";
  width: 17px;
  height: 10px;
  margin-right: 10px;
  background-image: url("/assets/svg/arrow-back.svg");
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: center center;
}
.actual-detail__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.actual-detail__image img {
  width: 100%;
}
.actual-detail__bottom-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url("/assets/image/bg-pattern-mobile-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}
.actual-detail__text span {
  display: block;
  margin: 60px 0 15px 0;
  color: #FDB714;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
}
.actual-detail__text p {
  margin-bottom: 16px;
}
.actual-detail__text strong {
  display: inline !important;
}
@media only screen and (min-width: 480px) {
  .actual-detail__bottom-content {
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) {
  .actual-detail__bottom-content {
    background-image: url("/assets/image/bg-pattern-2.png");
  }
}
@media only screen and (min-width: 1024px) {
  .actual-detail {
    align-items: center;
    padding: 60px 0 200px 0;
  }
  .actual-detail__top-content {
    align-items: flex-start;
  }
  .actual-detail__text {
    display: grid;
    grid-template-columns: [full-width-start] 10% [content-start] 1fr [content-end] 10% [full-width-end];
    max-width: 940px;
  }
  .actual-detail__text * {
    display: inline-block;
    grid-column: content;
  }
  .actual-detail__text span {
    margin-top: 70px;
  }
  .actual-detail__text p:has(img) {
    grid-column: full-width;
    text-align: center;
  }
}
@media only screen and (min-width: 1248px) {
  .actual-detail__top-content {
    align-items: stretch;
    padding: 0;
  }
}