@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
}
header .header-title {
  font-size: 64px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.content-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}
.content-wrapper .text-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-wrapper .text-content .subtitle {
  text-align: center;
  text-transform: uppercase;
  /* clamp(最小値, 望ましい値, 最大値) */
  font-size: clamp(16px, 2vw, 32px);
}
.content-wrapper .text-content .subtitle span {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: bold;
}
.content-wrapper .text-content .description {
  /* font-size: 14px; */
  font-size: clamp(10px, 1vw, 14px);
  line-height: 1.6;
}
.content-wrapper .image-container {
  width: 70%;
  aspect-ratio: 16/9;
}
.content-wrapper .image-container img {
  width: 100%;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
  .content-wrapper .text-content {
    width: 100%;
    order: 2;
  }
  .content-wrapper .image-container {
    width: 100%;
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */