section {
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 457px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 16px;
  text-align: center;
  max-width: 900px;
}

.hero-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.hero-title {
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-text {
  color: #999;
  font-size: 18px;
  font-weight: 500;
}

.hero-question {
  color: #999;
  font-size: 24px;
  font-weight: 500;
}

.nfl-section {
  position: relative;
  height: 585px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.nfl-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.nfl-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 16px;
  text-align: center;
  max-width: 900px;
}

.nfl-title {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
}

.nfl-date {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.notice-section {
  width: 100%;
  background-color: #fff;
  padding: 64px 96px;
}

.notice-container {
  max-width: 1179px;
  margin: 0 auto;
}

.notice-title {
  color: #445371;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 32px;
}

.notice-text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.notice-text {
  color: #545a6f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.notice-highlight {
  color: #545a6f;
  font-size: 16px;
  font-weight: 600;
}

.museum-section {
  position: relative;
  width: 100%;
  height: 382px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.museum-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.museum-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 16px;
  text-align: center;
  max-width: 1000px;
}

.museum-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.museum-text {
  color: #fff;
  font-size: 11px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 22px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-text {
    font-size: 22px;
  }

  .hero-question {
    font-size: 32px;
  }

  .nfl-title {
    font-size: 36px;
  }

  .nfl-date {
    font-size: 18px;
  }

  .notice-section {
    padding: 64px 96px;
  }

  .notice-title {
    font-size: 36px;
  }

  .notice-text {
    font-size: 14px;
  }

  .notice-highlight {
    font-size: 20px;
  }

  .museum-title {
    font-size: 36px;
  }

  .museum-text {
    font-size: 13px;
  }
}



@media (min-width: 0px) and (max-width: 500px) {
  .hero {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 70%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 16px;
    text-align: center;
    max-width: 90%;
  }

  .hero-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: 200;
  }

  .hero-title {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
  }

  .hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-text {
    color: #ddd;
    font-size: 10px;
    font-weight: 200;
  }

  .hero-question {
    color: #ddd;
    font-size: 10px;
    font-weight: 200;
  }

  .nfl-section {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
  }

  .nfl-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 70%;
    z-index: 1;
  }

  .nfl-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
    text-align: center;
    max-width: 90%;
  }

  .nfl-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
  }

  .nfl-date {
    color: #fff;
    font-size: 10px;
    font-weight: 300;
  }

  .notice-section {
    width: 100%;
    background-color: #fff;
    padding: 24px 16px;
  }

  .notice-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .notice-title {
    color: #445371;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: left;
    margin-left: 20px;
  }

  .notice-text-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    margin-left: 20px;
  }

  .notice-text {
    color: #545a6f;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
  }

  .notice-highlight {
    color: #545a6f;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin-top: 8px;
    margin-left: 20px;
  }

  .museum-section {
    position: relative;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
  }

  .museum-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 70%;
    z-index: 1;
  }

  .museum-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
    text-align: center;
    max-width: 60%;
  }

  .museum-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }

  .museum-text {
    color: #fff;
    font-size: 10px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 200px;
  }
}