@charset "utf-8";

.test-caution{
  width: 60%;
  min-width: 680px;
  margin: 2rem auto;
  border: 3px solid #FFB817;
  border-radius: 10px;
  background-color: #fff;
  padding: 1.5rem;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}

.test-caution h4{
  font-size: 1.5rem;
  color: #FFB817;
}

.test-caution-wrap{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.test-caution-text{
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: bold;
  color: #5F3500;
}

.test-caution-text img{
  width: 28px;
  height: auto;
}
.test-check{
  margin: 5rem auto;
}
.test-check-cont{
  margin: 3rem 0 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

.test-check-item{
  width: 30%;
}
.test-check-item img{
  width: 100%;
  height: auto;
  border: 3px solid #000;
  border-radius: 14px;
}

.test-check-item-head{
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: .5rem;
}

.test-check-item-head h4{
  color: #5F3500;
  font-size: 1.5rem;
}

.test-check-item-head img{
  width: 40px;
  height: auto;
}


@media screen and (max-width: 768px) {
  .test-check-item{
    width: 45%;
  }
  .test-check-item-head h4{
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 680px) {
  .test-caution{
    width: 100%;
    min-width: auto;
    margin: 2rem auto;
    border: 1.5px solid #FFB817;
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (max-width: 480px) {
 .test-check-item{
    width: 100%;
  }
}