@charset "UTF-8";
/* CSS Document */

.sec1 {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 100px;
  padding-top: 150px;
}

.sec1 img {
  display: block;
  min-height: 100px;
  max-height: 250px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 60px;
}

.sec1__title small {
  display: block;
  background: linear-gradient(90deg, #eb4a3f, #f0945a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sec1__title h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.sec1__title__line {
  width: 120px;
  height: 1px;
  background: #333333;
  margin: 0 auto 60px;
}

.sec1__p {
  text-align: left;
  margin-bottom: 100px;
}

.sec1__a {
  display: block;
  text-align: center;
  width: 300px;
  padding: 20px 0;
  color: #FFFFFF;
  font-weight: 700;
  background-image: linear-gradient(90deg, #eb4a3f, #f0945a);
  margin: 0 auto;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.sec1__a:hover {
  opacity: 1;
  scale: 1.1;
}



@media (max-width: 1024px) {
  .sec1 {
    padding-top: 100px;
  }
}

@media (max-width: 600px) {
  .sec1__title small {
    font-size: 1.4rem;
  }

  .sec1__title h2 {
    font-size: 2.8rem;
  }

  .sec1__p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}