.img-wrapper-attraction-u {
  max-width: 500px;
  margin-inline: auto;
}

.img-inner-attraction-u > div:first-of-type::after {
  content: '';
  display: block;
  width: 64px;
  height: 24px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: var(--gold);
  margin: 12px auto 8px;
}

.img-wrapper-attraction-u .sp-width100 {
  width: 100%;
  height: auto;
}

.list-program-materials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* .list-program-materials .text-link {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}

.list-program-materials .text-link::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: url(/assets/img/icon_download.svg) no-repeat center / 100% 100%;
} */

/* .list-program-materials .text-link > span {
  flex: 1;
} */

@media (min-width:900px) {
  .img-wrapper-attraction-u {
    max-width: unset;
  }
  
  .img-inner-attraction-u {
    display: flex;
    gap: clamp(40px,5%,60px);
  }

  .img-inner-attraction-u > div {
    flex: 1;
    position: relative;
  }

  .img-wrapper-attraction-u > div img {
    width: 100%;
    height: auto;
  }

  .img-inner-attraction-u > div:first-of-type::after {
    width: clamp(20px,4.4%,40px);
    height: auto;
    aspect-ratio: 24 / 64;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    margin: 0;
    position: absolute;
    top: 50%;
    right: -3.5%;
    translate: 100% -50%;
  }

  .list-program-materials {
    gap: 36px;
  }
}