/* import */
@import url(./reset.css);
@import url(./header.css);
@import url(./footer.css);
/* //import */

.pc {
  display: block;
}
.mo {
  display: none;
}

@media (max-width: 1024px) {
  #visual .pc {
    display: none;
  }
  #visual .mo {
    display: block;
  }
}

#common {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

#visual {
  background-size: cover;
  width: 100%;
  position: relative;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

#visual ul {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 10px;
}

#visual ul li {
  border-radius: 10px;
  overflow: hidden;
}

.webinar_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 15px;
  padding: 25px 4%;
}

.webinar_wrap button {
  border-radius: 50px;
  background: #3c7bef;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.webinar_wrap p {
  color: #11387f;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.48px;
}

@media (max-width: 1024px) {
  #visual ul {
    flex-direction: column;
    align-items: center;
  }

  #visual ul li {
    width: 100%;
    max-width: 650px;
  }

  #visual ul li img {
    width: 100%;
  }
}
