/* main
================================================== */
body {
  font-weight: 400;
}
.container {
  background-color: white;
  width: 100%;
}
.main__wrapper {
  width: 1240px;
  margin: 0 auto;
}
#main {
  width: 100%;
  margin: 0 auto;
}
section {
  padding-top: 128px;
}
.section__title {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}
.section__title::after {
  content: "";
  display: block;
  width: 128px;
  border-bottom: 1px solid black;
  margin: 10px auto 0;
}
.section__subtitle {
  font-size: 22px;
  text-align: center;
  margin-top: 24px;
}
.lineup__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 904px;
  padding-top: 48px;
  margin: 0 auto;
}
.lineup__content {
  width: 270px;
}
.model__img {
  width: 100%;
}
.lineup__content:hover .model__img {
  opacity: 0.7;
}
.model__name {
  margin-top: 13px;
}
.model__subtitle {
  font-size: 14px;
}
.model__title {
  font-size: 21px;
  font-weight: bold;
}
#new .model__title::after {
  content: "NEW";
  display: inline-block;
  font-size: 12px;
  color: white;
  background-color: red;
  padding: 0 4px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.banner:first-child {
  margin-bottom: 32px;
}
#banner a:first-child {
  position: relative;
}
.banner__icon {
  position: absolute;
  right: 16px;
  bottom: 48px;
}
#banner {
  text-align: center;
}
#banner a:hover {
  opacity: 0.7;
}
.inquiry__wrapper {
  padding-bottom: 128px;
}
.section__text {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  line-height: 33px;
}
.inquiry__btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .main__wrapper {
    width: 100%;
  }
  section {
    padding-top: 96px;
  }
  .section__subtitle {
    font-size: 18px;
    margin-top: 16px;
  }
  .lineup__wrapper {
    width: 100%;
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }
  .lineup__content {
    width: 270px;
  }
  #banner {
    width: 100%;
  }
  .inquiry__wrapper {
    padding-bottom: 96px;
  }
  .section__text {
    font-size: 18px;
    padding: 0 24px;
    margin-top: 28px;
  }
  .inquiry__btns {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
  }
}