.tab5Area {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0px auto;
  margin-bottom: 50px;
}
.tab5Area span {
  color: #707070;
  font-weight: 400;
}

.tab5Area h1 {
  margin: 0;
  color: #8a39a5;
}

.tab5Area h2 {
  margin: 0;
  color: #8a39a5;
  font-size: 2rem;
}
.tab5Area a {
  text-decoration: none;
  color: #ec6608;
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
  transition: color 0.3s ease;
  text-align: center;
}
.tab5Area a:hover {
  color: #220C3C;
}
.tab5Area .tab5CardArea {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
.tab5Area .tab5CardArea .tab5Card {
  display: flex;
  flex-direction: column;
  width: 260px;
  height: 330px;
  border-radius: 5px;
  box-shadow: 0 0 4px 0 #707070;
}
.tab5Area .tab5CardArea .tab5Card .tab5CardImg {
  width: 100%;
  height: 210px;
}
.tab5Area .tab5CardArea .tab5Card .tab5CardImg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.tab5Area .tab5CardArea .tab5Card .tab5CardContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 120px;
  background-color: #E9E7EC;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 1.2;
}
.tab5Area .tab5CardArea .tab5Card .tab5CardContent span {
  font-weight: 300;
  color: #220C3C;
  font-size: 15px;
  margin: 0;
}
.tab5Area .tab5CardArea .tab5Card .tab5CardContent h3 {
  font-weight: 500;
  color: #ec6608;
  font-size: 16px;
  margin: 0;
}
.tab5Area .tab5CardArea .tab5Card .tab5CardContent a {
  text-decoration: none;
  color: #220C3C;
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
  transition: color 0.3s ease;
}
.tab5Area .tab5CardArea .tab5Card .tab5CardContent a:hover {
  color: #ec6608;
}