.area-seciton {
  width: 100%;
  aspect-ratio: 92/47;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("../assets/img/area-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.area-container {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.area-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px 12px 12px 12px;
  padding: 40px 24px;
  width: 100%;
  margin: 60px auto;
  box-sizing: border-box;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.area-title {
  width: 35%;
  aspect-ratio: 62/13;
  background-image: url("../assets/img/area-title.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  margin: 0 auto;
}

.area-content {
  width: 55%;
  padding: 40px;
  aspect-ratio: 1/1;
  background-image: url("../assets/img/area-content.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  margin: 30px auto;
}

.area-footer {
  margin: 20px auto;
}

.area-footer > h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .area-container {
    width: 800px;
  }
}

@media (max-width: 820px) {
  .area-container {
    width: 750px;
  }
}

@media (max-width: 767px) {
  .area-container {
    width: 650px;
  }
  .area-footer > h3 {
    font-size: 24px;
  }
  .area-title {
    width: 40%;
  }
  .area-content {
    width: 80%;
    padding: 5px;
  }
}

@media (max-width: 670px) {
  .area-container {
    width: 580px;
  }
  .area-footer > h3 {
    font-size: 20px;
  }
}

@media (max-width: 608px) {
  .area-container {
    width: 500px;
  }
  .area-footer > h3 {
    font-size: 18px;
  }
}

@media (max-width: 540px) {
  .area-container {
    width: 400px;
  }
  .area-footer > h3 {
    font-size: 16px;
  }
  .area-title {
    width: 50%;
  }
  .area-content {
    width: 100%;
    padding: 5px;
  }
}

@media (max-width: 430px) {
  .area-container {
    width: 360px;
  }
  .area-footer > h3 {
    font-size: 14px;
  }
}

@media (max-width: 340px) {
  .area-container {
    width: 320px;
  }
}
