.pathCard {
  min-width: 340px;
  width: 72.2%;
  margin: 0 auto;
  margin-bottom: 4.375rem;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffd0b5;
  border-radius: 27px;
  overflow: hidden;
}
.pathCard .container {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pathCard .imgContainer {
  width: 32%;
}
.pathCard .p-text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  min-width: 342px;
}
.pathCard .p-text .p-t-top {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  gap: 1.34vw;
}
.pathCard .p-text .p-t-top .title {
  font-size: 2rem;
  font-family: "NotoSans-bold", sans-serif;
  color: #02306e;
}
.pathCard .p-text .p-t-top .detail {
  letter-spacing: 2px;
  font-size: 1.5rem;
  font-family: "NotoSans-regular", sans-serif;
  color: #02306e;
}
.pathCard .p-text .p-t-top .scheme {
  font-family: "NotoSans-bold", sans-serif;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
}
.pathCard .p-text .p-t-top .scheme .item {
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.pathCard .p-text .p-t-top .scheme .item:first-child {
  width: 37%;
  color: #0358b8;
  border: #0358b8 3px solid;
}
.pathCard .p-text .p-t-top .scheme .item:nth-child(2) {
  width: 49%;
  color: #ff5e00;
  border: #ff5e00 3px solid;
}
.pathCard .p-text .p-t-bottom {
  margin-left: auto;
  margin-right: 2rem;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  background-color: #ff5e00;
  border-radius: 10px;
  color: #ffffff;
  letter-spacing: 1px;
}
.pathCard .p-text .p-t-bottom img {
  width: 2.25rem;
  height: 2.25rem;
}
@media (max-width: 768px) {
  .pathCard {
    margin-top: 46px;
    margin-bottom: 38px;
    border-radius: 10px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    max-width: 430px;
    padding: 25px 0;
  }
  .pathCard .imgContainer {
    display: none;
  }
  .pathCard .container {
    width: 90%;
  }
  .pathCard .p-text {
    width: 100%;
  }
  .pathCard .p-text .p-t-top {
    gap: 2vw;
  }
  .pathCard .p-text .p-t-top .title {
    font-size: 20px;
  }
  .pathCard .p-text .p-t-top .detail {
    font-size: 14px;
  }
  .pathCard .p-text .p-t-top .scheme {
    font-size: 14px;
  }
  .pathCard .p-text .p-t-bottom {
    margin-left: 0;
    margin-right: 0;
  }
  #pathCard {
    margin-top: 38px;
    margin-bottom: 41px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1224px) {
  .pathCard .p-text .p-t-top .detail {
    font-size: 1.8vw;
  }
  .pathCard .p-text .p-t-top .title {
    font-size: 2.5vw;
  }
  .pathCard .p-text .p-t-top .scheme {
    font-size: 1.5vw;
  }
  .pathCard .p-text .p-t-top .scheme .item {
    height: 4.2vw;
  }
  .pathCard .p-text .p-t-bottom img {
    width: 2.5vw;
  }
}
