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

header {
  background: #0D2A35;
}

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

.title__area {
  margin-bottom: 50px;
}

.title__area p {
  font-family: var(--en);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
}

.title__area h2 {
  font-weight: 400;
}

.sec1__ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.sec1__ul__li {
  width: calc(100% / 3 - 20px);
  display: flex;
  flex-direction: column;
}

.sec1__ul__li__image {
  display: block;
  clip-path: polygon(7.5% 0, 100% 0, 92.5% 100%, 0% 100%);
  margin-bottom: 15px;
}

.sec1__ul__li__h3 {
  font-size: 2, 4rem;
  font-weight: 700;
  width: 90%;
  margin: 0 auto 5px;
}

.sec1__ul__li__p {
  flex: 1;
  font-weight: 400;
  line-height: 1.8;
  width: 90%;
  margin: 0 auto 15px;
  text-align: left;
}

.sec1__ul__li__span {
  display: block;
  width: 100%;
  height: 10px;
  background: #B1DEDE;
}

.sec1__ul__li:nth-child(2) .sec1__ul__li__span {
  background: #7C5498;
}

.sec1__ul__li:nth-child(3) .sec1__ul__li__span {
  background: #96004B;
}

.sec1__ul__li:nth-child(4) .sec1__ul__li__span {
  background: #DCE4E9;
}

.sec1__ul__li:nth-child(5) .sec1__ul__li__span {
  background: #005D81;
}

@media (max-width: 1024px) {
  .sec1__ul__li {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 767px) {
  .title__area p {
    font-size: 4rem;
  }

  .title__area h2 {
    font-size: 1.4rem;
  }

}

@media (max-width: 600px) {
  .sec1__ul {
    gap: 50px;
  }

  .sec1__ul__li {
    width: 100%;
  }
}