@charset "utf-8";

@import "global.css";

main section.trba {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
}

@media only screen and (min-width: 1280px) {
  main section.trba {
    gap: 60px;
  }
}

main section.trba h1 {
  padding: 0 20px;
  font-size: 32px;
  font-weight: 400;
  color: #222222;
  text-align: center;
  white-space: pre-line;
}

@media only screen and (min-width: 1280px) {
  main section.trba h1 {
    padding: 0;
    font-size: 60px;
    white-space: nowrap;
  }
}

main section.trba h1 span {
  font-weight: 900;
}

main section.trba div.box-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  margin: 0 auto;
  padding: 20px 50%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
}

main section.trba div.box-wrapper::-webkit-scrollbar {
  display: none;
}

main section.trba div.box-wrapper div.box {
  width: 90%;
  min-width: 270px;
  max-width: 300px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
  scroll-snap-align: center;
}

@media only screen and (min-width: 1280px) {
  main section.trba div.box-wrapper {
    width: var(--desktop-max-width);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    overflow-x: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  main section.trba div.box-wrapper div.box {
    width: auto;
    min-width: unset;
    max-width: none;
    padding: 0;
    scroll-snap-align: none;
  }
}

main section.trba div.box-wrapper div.box div.image {
  width: 160px;
  height: 160px;
}

@media only screen and (min-width: 1280px) {
  main section.trba div.box-wrapper div.box div.image {
    width: 320px;
    height: 320px;
  }
}

main section.trba div.box-wrapper div.box div.image img {
  width: 100%;
  height: 100%;
}

main section.trba div.box-wrapper div.box div.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

main section.trba div.box-wrapper div.box div.content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222222;
}

@media only screen and (min-width: 1280px) {
  main section.trba div.box-wrapper div.box div.content h3 {
    font-size: 20px;
  }
}

main section.trba div.box-wrapper div.box div.content p {
  font-size: 15px;
  font-weight: 400;
  color: #222222;
}

@media only screen and (min-width: 1280px) {
  main section.trba div.box-wrapper div.box div.content p {
    font-size: 22px;
  }
}

main section.trba .announcement {
  width: 100%;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 400;
  color: #bbbbbb;
  text-align: center;
  /* white-space: nowrap; */
}

@media only screen and (min-width: 1280px) {
  main section.trba .announcement {
    padding: 0;
    font-size: 22px;
    /* white-space: nowrap; */
  }
}

main section.trba .download-desktop {
  display: none;
}

@media only screen and (min-width: 1280px) {
  main section.trba .download-desktop {
    width: var(--desktop-max-width);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
  }
}

main section.trba .download-desktop div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #004aad;
}

main section.trba .download-desktop div img {
  width: 24px;
  height: 24px;
}

main section.trba .download-desktop div p,
main section.trba .download-desktop div a {
  font-size: 18px;
  font-weight: 600;
}

main section.trba .download-mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 0 20px;
}

@media only screen and (min-width: 1280px) {
  main section.trba .download-mobile {
    display: none;
  }
}

main section.trba .download-mobile div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  color: #004aad;
}

main section.trba .download-mobile div img {
  width: 16px;
  height: 16px;
}

main section.trba .download-mobile div p,
main section.trba .download-mobile div a {
  font-size: 15px;
  font-weight: 600;
}
