.adopt_tab {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.adopt_tab li {
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 8px 2px;
  font-size: 1rem;
  border: 1px solid var(--black22);
  border-radius: 5px;
  display: block;
  color: var(--black22);
  position: relative;
  overflow: hidden;
  letter-spacing: -1px;
}
.adopt_tab li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black22);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
  z-index: -1;
}
.adopt_tab li.on {
  background: var(--black22);
}
.adopt_tab li.on, .adopt_tab li:hover {
  color: var(--whiteff);
  cursor: pointer;
  z-index: 1;
}
.adopt_tab li:hover:after {
  transform: scaleX(1);
}
@media (width <= 890px) {
  .adopt_tab li {
    padding: 8px 0px;
    font-size: 0.9rem;
  }
}
@media (width <= 768px) {
  .adopt_tab {
    display: none;
  }
}

.adopt_select {
  display: none;
}
@media (width <= 768px) {
  .adopt_select {
    display: block;
    border: 1px solid var(--graydd);
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px;
    background: url(../images/arrow-down.svg) 95% center no-repeat;
    background-size: 13px;
  }
  .adopt_select p {
    font-size: 1.1rem;
  }
}

@media (width <= 480px) {
  .adoptPop .radio_chk li input[type=radio] + label {
    font-size: 1.1rem;
  }
}
.adopt_wrap {
  width: 100%;
}
.adopt_wrap h3.adopt_subTitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 10px 8px;
  border-bottom: 1px solid #222;
  display: none;
}
@media (max-width: 650px) {
  .adopt_wrap h3.adopt_subTitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .adopt_wrap h3.adopt_subTitle {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.adopt_wrap h3.adopt_subTitle.on {
  display: block;
}

.adopt_list {
  width: 100%;
  display: none;
}
.adopt_list.on {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (width <= 780px) {
  .adopt_list.on {
    flex-direction: column;
  }
}
@media (width <= 650px) {
  .adopt_list.on {
    margin-bottom: 30px;
  }
}
@media (width <= 480px) {
  .adopt_list.on {
    margin-bottom: 50px;
  }
}
.adopt_list .adopt_con {
  display: flex;
  gap: 20px;
  width: calc(33% - 5px);
  flex-direction: column;
  flex-shrink: 0;
}
.adopt_list .adopt_con .img {
  width: 100%;
}
.adopt_list .adopt_con .img img {
  width: 100%;
  aspect-ratio: 1/0.8;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.adopt_list .adopt_con .info {
  width: 100%;
}
.adopt_list .adopt_con .info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black22);
  margin-bottom: 15px;
}
.adopt_list .adopt_con .info h5 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray44);
  margin-bottom: 15px;
}
.adopt_list .adopt_con .info p {
  font-size: 0.9rem;
  color: var(--gray44);
  line-height: 1.5;
  margin-bottom: 15px;
  word-break: auto-phrase;
}
.adopt_list .adopt_con .info .bnr_list {
  display: flex;
  gap: 10px;
}
.adopt_list .adopt_con .info .bnr_list button.btn {
  padding: 8px 20px 8px 35px;
  border: 1px solid var(--gray44);
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray44);
  cursor: pointer;
}
.adopt_list .adopt_con .info .bnr_list button.btn.qr {
  background: var(--whiteff) url(../images/bnr_icon_qr.jpg) 10px center no-repeat;
  background-size: 18px;
}
.adopt_list .adopt_con .info .bnr_list button.btn.table {
  background: var(--whiteff) url(../images/bnr_icon_table.jpg) 10px center no-repeat;
  background-size: 18px;
}
.adopt_list .adopt_con .info .bnr_list button.btn.youtube {
  background: var(--whiteff) url(../images/bnr_icon_youtube.jpg) 10px center no-repeat;
  background-size: 24px;
}
@media (width <= 780px) {
  .adopt_list .adopt_con {
    width: 100%;
    gap: 10px;
    flex-direction: row;
  }
  .adopt_list .adopt_con .img {
    max-width: 200px;
  }
}
@media (width <= 650px) {
  .adopt_list .adopt_con {
    margin-bottom: 0 !important;
  }
  .adopt_list .adopt_con .img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .adopt_list .adopt_con .img img {
    aspect-ratio: 1/0.6;
  }
  .adopt_list .adopt_con .info {
    width: 100%;
  }
  .adopt_list .adopt_con .info h3 {
    font-size: 1.2rem;
  }
}
@media (width <= 550px) {
  .adopt_list .adopt_con {
    flex-direction: column;
    margin-bottom: 20px !important;
  }
  .adopt_list .adopt_con .img {
    margin-bottom: 0px;
  }
}
@media (width <= 480px) {
  .adopt_list .adopt_con .info h3 {
    font-size: 1.4rem;
  }
  .adopt_list .adopt_con .info h5 {
    font-size: 1.3rem;
  }
  .adopt_list .adopt_con .info p {
    font-size: 1.1rem;
  }
  .adopt_list .adopt_con .info .bnr_list button.btn {
    font-size: 1rem;
  }
}

.radio_chk_half li input[type=radio] + label,
.radio_chk li input[type=radio] + label {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: url("../images/radio.svg") left center no-repeat;
  background-size: 15px;
}

.radio_chk_half li input[type=radio]:checked + label,
.radio_chk li input[type=radio]:checked + label {
  background: url("../images/radio_on.svg") left center no-repeat;
  background-size: 15px;
}/*# sourceMappingURL=adopt.css.map */