@charset "UTF-8";

.strong {
	font-weight: var(--fw-700);
}
/* =========================
  연산안내 > 병원소개 > 병원소개
========================= */
.about-page .about-section .tit-box .mint-strong {
  color: var(--mint);
}
.about-section .img-box {
  width: 100%;
  height: 650px;
}
.about-section .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-section .text-box {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 40px;
}
.about-section .text-box > span {
  display: inline-block;
  width: calc(50% - 60px);
  font-size: 40px;
  font-family: "PT Serif", serif;
  font-weight: var(--fw-700);
  font-style: italic;
  color: var(--mint);
}
.about-section .text-box strong {
  line-height: 1.3;
  font-size: 40px;
}
.about-section .text-box strong span {
  color: var(--mint);
}
.about-section .text-box .p-box {
  width: 50%;
}
/* =========================
  반응형 (연산안내 > 병원소개 > 병원소개)
========================= */
@media (max-width: 1280px) {
  .about-section .img-box {
    height: 550px;
  }
}
@media (max-width: 1024px) {
  .about-section .img-box {
    height: 400px;
  }
  .about-section .text-box {
    margin-top: 30px;
    gap: 40px;
  }
  .about-section .text-box > span,
  .about-section .text-box strong {
    width: calc(50% - 40px);
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .about-section .img-box {
    height: 350px;
  }
  .about-section .text-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  .about-section .text-box > span,
  .about-section .text-box strong {
    width: 100%;
    font-size: 30px;
  }
  .about-section .text-box .p-box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .about-section .img-box {
    height: 250px;
  }
  .about-section .text-box {
    gap: 10px;
    margin-top: 15px;
  }
  .about-section .text-box > span,
  .about-section .text-box strong {
    font-size: 20px;
  }
}
/* =========================
  연산안내 > 병원소개 > 특별함 Swiper
========================= */
.specialty-section {
  position: relative;
  width: 100%;
  height: 100vh;
}
.feature-swiper .swiper-slide::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  left: 0;
}
.about-page .feature-swiper .feature-slide01 {
  background: url('/img/sub/veterinarians-dog-checkup.jpg') no-repeat center/cover;
}
.about-page .feature-swiper .feature-slide02 {
  background: url('/img/sub/vet-operating-room.jpg') no-repeat center/cover;
}
.about-page .feature-swiper .feature-slide03 {
  background: url('/img/sub/doctor-ultrasound-explanation.jpg') no-repeat center/cover;
}
.feature-swiper .text-box {
  position: absolute;
  bottom: 160px;
  width: 100%;
}
.feature-swiper .deco {
  display: inline-block;
  width: max-content;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: var(--fs-xsmall);
  color: var(--white);
  background-color: var(--mint);
}
.feature-swiper h5 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-700);
  color: var(--white);
  margin: 20px 0 40px;
  line-height: 1.3;
}
.feature-swiper p {
  font-size: var(--fs-sub);
  color: var(--eee);
}

/* 반응형 */
@media (max-width: 1024px) {
  .feature-swiper .text-box {
    bottom: 120px;
  }
}

@media (max-width: 768px) {
  .feature-swiper .text-box {
    bottom: 100px;
  }
  .feature-swiper h5 {
    margin: 15px 0 20px;
  }
}

@media (max-width: 480px) {
  .specialty-section {
    height: 80vh;
  }
  .feature-swiper .text-box {
    bottom: 80px;
  }
  .feature-swiper .deco {
    padding: 5px 10px;
  }
  .feature-swiper h5 {
    margin: 10px 0 15px;
  }
  .feature-swiper p br {
    display: none;
  }
}
/* =========================
  연산안내 > 병원소개 > 병원 둘러보기 Swiper
========================= */
.tabslide-section {
  position: relative;
  padding: var(--padding160);
}
.tabslide-section .sub-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 100px;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 100px);
  height: 100%;
  background-color: var(--skyblue);
}
.tabslide-section .bg::after {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: block;
  content: '';
  background: url(/img/symbol.svg) no-repeat center / cover;
  width: 500px;
  height: 489px;
  z-index: 0;
  opacity: .6;
}
.tabslide-section .left {
  width: calc(50% - 100px);
}
.tabslide-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 280px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: var(--fs-sub);
  font-weight: var(--fw-700);
  color: var(--c666);
  cursor: pointer;
  transition: var(--transition);
}
.tabslide-nav li::before {
  display: inline-block;
  content: '';
  background: url(/img/plus-m.svg) no-repeat center / cover;
  width: 10px;
  height: 10px;
  transition: var(--transition);
}
.tabslide-nav li.active,
.tabslide-nav li:hover {
  background-color: var(--mint);
  color: var(--white);
}
.tabslide-nav li.active::before,
.tabslide-nav li:hover::before {
  background: url(/img/plus-w.svg) no-repeat center / cover;
}
.tabslide-section .right {
  width: 50%;
}
.tab-content {
  position: relative;
}
.tab-content .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.tab-content .content.active {
  visibility: visible;
}
.tab-content .content.visible {
  opacity: 1;
}
.tab-content .img-box {
  position: relative;
  height: 400px;
  border-radius: var(--border30);
  overflow: hidden;
}
.tab-content .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
}
.tab-content .text-box {
  margin-top: 20px;
}
.tab-content .text-box p {
  font-size: var(--fs-h4);
  font-weight: var(--fw-700);
}
.tab-content .text-box span {
  color: var(--c999);
}
/* 반응형 */
@media (max-width: 1280px) {
  .tabslide-section .bg::after {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .tabslide-section .sub-inner {
    gap: 60px;
  }
  .bg {
    width: calc(48% - 60px);
  }
  .tabslide-section .left {
    width: calc(48% - 60px);
  }
  .tabslide-section .right {
    width: 52%;
  }
  .tabslide-nav li {
    width: 260px;
  }
  .tab-content .img-box {
    height: 350px;
  }
  .tabslide-section .bg::after {
    bottom: 5%;
    right: 5%;
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .tabslide-section .sub-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .tabslide-section .left,
  .tabslide-section .right {
    width: 100%;
  }
  .tabslide-section .tit-box {
    align-items: center;
  }
  .tabslide-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  .tabslide-nav li {
    width: calc((100% / 2)  - 10px);
    border: 1px solid var(--mint);
  }
  .bg {
    width: 100%;
    height: 50vh;
    bottom: 0;
    top: auto;
  }
  .tabslide-section .bg::after {
    display: none;
  }
  .tab-content {
    height: 489px;
  }
  .tabslide-section .swiper-pagination-progressbar {
    background: var(--white);
  }
}
@media (max-width: 480px) {
  .tabslide-section .sub-inner {
    gap: 20px;
  }
  .bg {
    height: 36vh;
  }
  .tab-content {
    height: 351px;
  }
  .tab-content .img-box {
    height: 250px;
  }
  .tabslide-nav {
    gap: 6px;
    flex-direction: column;
  }
  .tabslide-nav li {
    width: 100%;
    padding: 10px 15px;
  }
  .tab-content .text-box {
    margin-top: 15px;
  }
}
/* =========================
  연산안내 > 병원소개 > 장비소개 Swiper
========================= */
.equipment-section {
  padding: var(--padding160);
  overflow: hidden;
}
.equipment-section .sub-inner {
  overflow: visible;
}
.about-page .equipment-section .tit-box {
  text-align: center;
}
.about-page .equipment-section .tit-box .label {
  margin: 0 auto;
}
.equipment-swiper {
  overflow: visible;
}
.equip-card {
  padding: 15px;
  border-radius: var(--border30);
  border: 1px solid var(--eee);
  transition: var(--transition);
  text-align: center;
  height: auto;
  overflow: hidden;
}
.equip-card:hover,
.equipment-swiper .swiper-slide-active .equip-card {
  border: 1px solid var(--mint);
}
.equip-card span {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: var(--white);
  border-radius: 100px;
  padding: 10px 30px;
  font-size: var(--fs-body);
  font-weight: var(--fw-700);
  width: max-content;
}
/* 반응형 */
@media (max-width: 768px){
  .equip-card {
    padding: 20px;
  }
  .equip-card span {
    padding: 10px 20px;
    bottom: 20px;
  }
}
@media (max-width: 480px){
  .equip-card {
    padding: 0;
  }
  .equip-card span {
    bottom: 15px;
    padding: 5px 15px;
  }
}
/* =========================
  연산안내 > 의료진소개
========================= */
.doctor-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 160px;
}
.doctor-section::before {
  position: absolute;
  bottom: 160px;
  left: 50%;
  z-index: 1;
  content: "for your beloved pets";
  font-family: "PT Serif", serif;
  font-weight: var(--fw-700);
  font-size: 192px;
  color: var(--skyblue);
  white-space: nowrap;
}
.doctor-section.no-before::before {
  display: none !important;
  content: none !important;
}
.item-list .item {
  display: none;
}
.item-list .item.on {
  display: block;
}
.item-list .card-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 60px;
}
.item-list .card-box .card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px;
  width: calc((100% / 2) - 30px);
}
.item-list .card-box .card .img-box {
  position: relative;
  overflow: hidden;
  width: 45%;
  height: 0;
  padding-bottom: 400px;
  background-color: var(--skyblue);
  border-radius: var(--border30);
}
.item-list .card-box .card .img-box img {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 90%;
  transform: translateX(-50%);
  transition: var(--transition);
}
.item-list .card-box .card .right-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  padding: 20px 0;
}
.doctor-name {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: var(--fw-700);
}
.doctor-name::after {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: '';
  background-color: var(--eee);
}
.doctor-name dt {
  margin-bottom: 10px;
  color: var(--mint);
  font-size: var(--fs-small);
}
.doctor-name dd {
  font-size: 35px;
}
.doctor-name dd span {
  margin-left: 10px;
  color: var(--c666);
  font-size: var(--fs-body);
}
.item-list .card-box .card .right-box .text-box ul li {
  display: flex;
  gap: 5px;
  color: var(--c666);
  font-family: "Pretendard Variable", Pretendard;
}
.item-list .card-box .card .right-box .text-box ul li:not(:last-child) {
  margin-bottom: 8px;
}
.item-list .card-box .card .right-box .text-box ul li::before {
  display: block;
  content: '·';
}
.item-list .btn {
  position: absolute;
  bottom: 20px;
  border: 1px solid var(--mint);
  color: var(--mint);
  cursor: pointer;
}
.item-list .btn:hover {
  color: var(--white);
}
/*모달창*/
.doctor-modal-box {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}
.doctor-modal-box .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0,0,0,.4);
  z-index: -3;
}
.doctor-modal-box .doctor-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  flex-direction: row;
  width: 90%;
  max-width: 1200px;
  height: 75vh;
  overflow: hidden;
  transform: translate(-50%,-50%);
  background-color: var(--white);
  border-radius: var(--border30);
  z-index: -2;
}
.doctor-modal-box .doctor-modal .close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 1;
  display: inline-block;
  font-size: 20px;
  font-weight: var(--fw-700);
  cursor: pointer;
}
.doctor-modal-box .doctor-modal > figure {
  position: relative;
  overflow: hidden;
  width: 45%;
  background-color: var(--skyblue);
}
.doctor-modal-box .doctor-modal > figure img {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 95%;
  transform: translateX(-50%);
  transition: var(--transition);
}
.doctor-modal-box .doctor-modal .info-box {
  display: flex;
  flex-direction: column;
  width: 62%;
  height: 100%;
  box-sizing: border-box;
  padding: 60px;
}
.doctor-modal-box .doctor-modal .info-box .doctor-name {
  flex: 0 0 auto;
}
.doctor-modal-box .doctor-modal .info-box .doctor-name dt {
  font-size: var(--fs-body);
}
.doctor-modal-box .doctor-modal .info-box .doctor-name dd {
  font-size: var(--fs-h2);
}
.doctor-modal-box .doctor-modal .info-box .doctor-name dd span {
  font-size: var(--fs-h3);
}
.doctor-modal .scroll-box {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 40px;
  padding-right: 10px;
}
.doctor-modal .scroll-box::-webkit-scrollbar {
  width: 8px;
}
.doctor-modal .scroll-box::-webkit-scrollbar-thumb {
  height: 30%;
  background-color: var(--mint);
  border-radius: 10px;
}
.doctor-modal .scroll-box::-webkit-scrollbar-track {
  background-color: var(--skyblue);
  border-radius: 10px;
}
.doctor-modal .scroll-box .career-box h5 {
  margin-bottom: 15px;
  font-size: var(--fs-body);
  font-weight: var(--fw-700);
}
.doctor-modal .scroll-box .career-box ul li {
  display: flex;
  gap: 5px;
  color: var(--c666);
  line-height: 1.5;
}
.doctor-modal .scroll-box .career-box ul li:not(:last-child) {
  margin-bottom: 5px;
}
.doctor-modal .scroll-box .career-box ul li::before {
  display: block;
  content: '·';
}
.pet-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pet {
  width: calc((100% - 60px)/4);
  overflow: hidden;
  border-radius: 100px;
}
.qualifications-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* =========================
  반응형 (연산안내 > 의료진소개)
========================= */
@media (max-width: 1440px) {
  .item-list .card-box .card .img-box img {
    bottom: 30px;
    transform: translateX(-50%) scale(1.2);
  }
  .item-list .card-box .card .right-box {
    padding: 0;
  }
}

@media (max-width: 1280px) {
  .item-list .card-box .card {
    flex-direction: column;
  }
  .item-list .card-box .card .img-box {
    width: 100%;
  }
  .item-list .card-box .card .img-box img {
    bottom: 0;
    max-width: 300px;
    transform: translateX(-50%) scale(1);
  }
  .item-list .btn {
    position: static;
    margin-top: 20px;
  }
  .doctor-section::before {
    bottom: 140px;
    font-size: 128px;
  }
}

@media (max-width: 1100px) {
  .doctor-modal-box .doctor-modal > figure img {
    bottom: 45px;
    transform: translateX(-50%) scale(1.2);
  }
}

@media (max-width: 1024px) {
  .doctor-section {
    padding: 0 0 120px;
  }
  .doctor-section::before {
    bottom: 110px;
    font-size: 96px;
  }
  .item-list .card-box {
    gap: 40px;
  }
  .item-list .card-box .card {
    gap: 30px;
    width: calc((100% / 2) - 20px);
  }
  .item-list .card-box .card .img-box {
    padding-bottom: 350px;
  }
  .item-list .card-box .card .img-box img {
    max-width: 260px;
  }
  .doctor-modal-box .doctor-modal {
    height: 55vh;
  }
  .doctor-modal-box .doctor-modal > figure img {
    bottom: 0;
    transform: translateX(-50%) scale(1);
  }
  .doctor-modal-box .doctor-modal .info-box {
    padding: 40px;
  }
  .doctor-modal-box .doctor-modal .info-box .doctor-name dd {
    font-size: 35px;
  }
  .doctor-modal-box .doctor-modal .info-box .doctor-name dt {
    margin-bottom: 5px;
  }
  .pet {
	  width: calc((100% - 40px)/3);
	}
}

@media (max-width: 768px) {
  .doctor-section {
    padding: 0 0 100px;
  }
  .doctor-section::before {
    bottom: 90px;
  }
  .item-list .card-box {
    gap: 40px 20px;
  }
  .item-list .card-box .card {
    gap: 20px;
    width: calc((100% / 2) - 10px);
  }
  .item-list .card-box .card .img-box {
    padding-bottom: 300px;
  }
  .item-list .card-box .card .img-box img {
    max-width: 230px;
  }
  .doctor-name dd,
  .doctor-modal-box .doctor-modal .info-box .doctor-name dd {
    font-size: 30px;
  }
  .doctor-name dd span {
    margin-left: 5px;
  }
  .doctor-modal-box .doctor-modal {
    flex-direction: column;
    height: 75vh;
  }
  .doctor-modal-box .doctor-modal > figure {
    width: 100%;
    height: 0;
    padding-bottom: 280px;
  }
  .doctor-modal-box .doctor-modal > figure img {
    max-width: 200px;
  }
  .doctor-modal-box .doctor-modal .info-box {
    width: 100%;
    height: calc(100% - 280px);
    padding: 30px;
  }
  .doctor-modal-box .doctor-modal .info-box .doctor-name {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .doctor-modal .scroll-box {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .doctor-section {
    padding: 0 0 80px;
  }
  .doctor-section::before {
    font-size: 0;
  }
  .item-list .card-box {
    flex-direction: column;
  }
  .item-list .card-box .card {
    gap: 15px;
    width: 100%;
  }
  .item-list .card-box .card .img-box {
    padding-bottom: 250px;
  }
  .item-list .card-box .card .img-box img {
    max-width: 190px;
  }
  .item-list .card-box .card .right-box {
    gap: 0;
    padding: 0 10px;
  }
  .doctor-name {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .doctor-name dt {
    margin-bottom: 5px;
  }
  .doctor-name dd,
  .doctor-modal-box .doctor-modal .info-box .doctor-name dd {
    font-size: 25px;
  }
  .doctor-modal-box .doctor-modal .close-btn {
    top: 20px;
    right: 20px;
    font-size: 18px;
  }
  .doctor-modal-box .doctor-modal {
    height: 80vh;
  }
  .doctor-modal-box .doctor-modal > figure {
    padding-bottom: 200px;
  }
  .doctor-modal-box .doctor-modal > figure img {
    max-width: 200px;
    bottom: -60px;
  }
  .doctor-modal-box .doctor-modal .info-box {
    height: calc(100% - 200px);
    padding: 20px;
  }
  .doctor-modal-box .doctor-modal .info-box .doctor-name {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .doctor-modal-box .doctor-modal .info-box .doctor-name dt {
    margin-bottom: 5px;
  }
  .doctor-modal .scroll-box {
    gap: 20px;
  }
  .doctor-modal .scroll-box .career-box ul li:not(:last-child) {
    margin-bottom: 2px;
  }
  .doctor-modal .scroll-box .career-box h5 {
    margin-bottom: 5px;
  }
  .pet-box {
    gap: 10px;
  }
  .pet {
	width: calc((100% - 20px)/3);
  }
  .qualifications-box {
    gap: 10px;
  }
}

/* =========================
  연산안내 > 진료시간 및 오시는길 > 진료시간
========================= */
.clinic-hours {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  border-radius: var(--border30);
  padding: 40px 0;
}
.clinic-hours li {
  position: relative;
  width: calc(100% / 3);
  padding: 0 60px;
  box-sizing: border-box;
}
.clinic-hours li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #ddd;
  width: 1px;
  height: 100%;
}
.clinic-hours li .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.clinic-hours li .top .img-box {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: var(--skyblue);
  border-radius: 50%;
}
.clinic-hours li .top .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: auto;
  transform: translate(-50%, -50%);
}
.clinic-hours li .top h5 {
  font-size: var(--fs-h2-2);
  font-weight: var(--fw-700);
  flex: 1;
}
.clinic-hours li strong {
  font-size: var(--fs-h4);
  color: var(--mint);
}
.clinic-time {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clinic-time dl {
  display: flex;
  gap: 10px;
}
.clinic-time dl dt {
  font-size: var(--fs-h5);
  font-weight: var(--fw-700);
}
.clinic-time dl dd {
  font-size: var(--fs-sub);
  color: var(--c666);
}
.clinic-time span {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  color: var(--c666);
}
.clinic-time span::before {
  content: '※';
}
.directions-section {
  padding-bottom: 160px;
}
.directions-box {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.directions-box .map {
  width: calc(50% - 30px);
  padding: 0;
}
.directions-box .map .inner {
  width: 100%;
}
.directions-box .right-box {
  width: calc(50% - 30px);
}
.directions-box .right-box h5 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-700);
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .clinic-hours li {
    padding: 0 40px;
  }
}
@media (max-width: 1280px) {
  .clinic-hours li .top .img-box {
    width: 100px;
    height: 100px;
  }
  .clinic-hours li .top .img-box img {
    width: 50px;
  }
}
@media (max-width: 1024px) {
  .clinic-hours {
    flex-direction: column;
    padding: 0 50px;
  }
  .clinic-hours li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 35vh;
    padding: 0;
  }
  .clinic-hours li:not(:last-child)::after {
    top: auto;
    bottom: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 1px;
  }
  .clinic-hours li .top {
    display: block;
    margin-bottom: 0;
  }
  .clinic-hours li .top .img-box {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
  }
  .clinic-hours li .top .img-box img {
    width: 50%;
  }
  .directions-section {
    padding-bottom: 120px;
  }
  .directions-box {
    flex-direction: column;
  }
  .directions-section .map .wrap_map {
    height: 350px !important;
  }
  .directions-box .map,
  .directions-box .right-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .clinic-hours {
    padding: 0 30px;
  }
  .clinic-hours li .top .img-box {
    width: 130px;
    height: 130px;
  }
  .clinic-time {
    gap: 5px;
  }
  .directions-section {
    padding-bottom: 100px;
  }
  .directions-box {
    gap: 30px;
  }
  .directions-box .right-box h5 {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .clinic-hours li .top {
    display: flex;
  }
  .clinic-hours li .top .img-box {
    position: relative;
    transform: none;
    right: auto;
    top: auto;
  }
}
@media (max-width: 480px) {
  .clinic-hours {
    padding: 0 30px;
  }
  .clinic-hours li {
    gap: 5px;
    height: auto;
    padding: 30px 0;
  }
  .clinic-hours li .top .img-box {
    width: 80px;
    height: 80px;
  }
  .directions-section {
    padding-bottom: 80px;
  }
  .directions-box {
    gap: 20px;
  }
  .directions-section .map .wrap_map {
    height: 250px !important;
  }
  .directions-box .right-box h5 {
    margin-bottom: 10px;
  }
}

/* =========================
  진료서비스 > 일반 내과 클리닉
========================= */
.general-medicine {
  padding: 195px 0 0;
}
.general-medicine .medicine-subjects-wrap .medicine-subjects {
  padding: 100px 0;
}
.general-medicine .medicine-subjects-wrap .medicine-subjects:nth-child(2n) {
  background-color: var(--skyblue);
}
.general-medicine .medicine-subjects-wrap .medicine-subjects:first-child {
  padding: 0 0 160px;
}
.general-medicine .medicine-subjects-wrap .medicine-subjects:last-child {
  padding: 100px 0 160px;
}
.general-medicine .content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.general-medicine .content .text-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(50% - 60px);
}
.general-medicine .content .subjects-tit h5 {
  margin-top: 20px;
  font-size: var(--fs-h2);
  font-weight: var(--fw-700);
}
.general-medicine .content .p-box p {
  color: var(--c666);
}
.tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  padding: 30px;
  border-radius: 15px;
  background-color: #f8f8f8;
}
.tag-w {
  background: var(--white);
}
.half-wrap .text-box .tag,
.half-bigimg-wrap .text-box .tag {
  margin-top: 40px;
}
.general-medicine .medicine-subjects-wrap .medicine-subjects:nth-child(2n) .tag {
  background-color: var(--white);
}
.tag li {
  font-size: var(--fs-sub);
  font-weight: var(--fw-700);
}
.general-medicine .content .img-box {
  position: relative;
  width: 50%;
  height: 0;
  padding-bottom: 460px;
  border-radius: var(--border30);
  overflow: hidden;
  background: var(--white);
}
.general-medicine .content .img-box img {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 700px;
  height: auto;
  transform: translate(-50%, 50%);
}
.general-medicine .medicine-subjects .healing {
  position: relative;
  margin-top: 200px;
}
.general-medicine .medicine-subjects .healing::before {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background-color: var(--eee);
}
.general-medicine .medicine-subjects .healing strong {
  display: block;
  margin-bottom: 40px;
  font-size: 40px;
}
.general-medicine .medicine-subjects .healing-box {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 30px;
  border-radius: var(--border30);
  background: var(--skyblue);
}
.general-medicine .medicine-subjects .healing-box figure {
  width: 35%;
  border-radius: 20px;
  overflow: hidden;
}
.general-medicine .medicine-subjects .healing-box figure img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.general-medicine .medicine-subjects .healing-box .text {
  width: 70%;
}
.general-medicine .medicine-subjects .healing-box .text span {
  font-size: var(--fs-h3);
  font-weight: var(--fw-700);
  color: var(--mint);
}
.general-medicine .medicine-subjects .healing-box .text p {
  margin-top: 20px;
  font-size: var(--fs-sub);
}

/* =========================
  반응형
========================= */
@media (max-width: 1280px) {
  .general-medicine .content {
    align-items: stretch;
  }
  .general-medicine .content .img-box {
    height: auto;
    padding-bottom: 0;
  }
  .general-medicine .content .img-box img {
    width: 100%;
    transform: translate(-50%, 50%) scale(1.2);
  }
  .general-medicine .medicine-subjects .healing strong {
    font-size: 35px;
  }
}

@media (max-width: 1024px) {
  .general-medicine {
    padding: 150px 0 0;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects {
    padding: 80px 0;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects:first-child {
    padding: 0 0 80px;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects:last-child {
    padding: 80px 0 120px;
  }
  .general-medicine .content {
    gap: 40px;
  }
  .general-medicine .content .text-box {
    gap: 30px;
    width: calc(50% - 40px);
  }
  .general-medicine .medicine-subjects .healing {
    margin-top: 100px;
  }
  .general-medicine .medicine-subjects .healing::before {
    top: -50px;
  }
  .general-medicine .medicine-subjects .healing strong {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .general-medicine .medicine-subjects .healing-box {
    align-items: stretch;
    gap: 40px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .general-medicine {
    padding: 130px 0 0;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects {
    padding: 60px 0;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects:first-child {
    padding: 0 0 60px;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects:last-child {
    padding: 60px 0 100px;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects:nth-child(odd) .content .img-box {
    border: 1px solid var(--darkskyblue);
  }
  .general-medicine .content {
    gap: 30px;
    flex-direction: column-reverse;
  }
  .general-medicine .content .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 300px;
  }
  .general-medicine .content .img-box img {
    width: 530px;
    transform: translate(-50%, 50%) scale(1);
  }
  .general-medicine .content .text-box {
    gap: 20px;
    width: 100%;
  }
  .general-medicine .content .subjects-tit h5 {
    margin-top: 15px;
  }
  .tag {
    gap: 5px 15px;
    padding: 20px;
  }
  .general-medicine .medicine-subjects .healing {
    margin-top: 100px;
  }
  .general-medicine .medicine-subjects .healing::before {
    top: -50px;
  }
  .general-medicine .medicine-subjects .healing strong {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .general-medicine .medicine-subjects .healing-box {
    flex-direction: column;
    gap: 20px;
  }
  .general-medicine .medicine-subjects .healing-box figure {
    width: 100%;
  }
  .general-medicine .medicine-subjects .healing-box .text {
    width: 100%;
  }
  .general-medicine .medicine-subjects .healing-box .text p {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .general-medicine {
    padding: 105px 0 0;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects:first-child {
    padding: 0 0 50px;
  }
  .general-medicine .content {
    gap: 20px;
  }
  .general-medicine .content .img-box {
    padding-bottom: 250px;
    border-radius: 15px;
  }
  .general-medicine .content .img-box img {
    width: 380px;
  }
  .general-medicine .medicine-subjects-wrap .medicine-subjects {
    padding: 50px 0;
  }
  .general-medicine .content .subjects-tit h5 {
    margin-top: 8px;
  }
  .general-medicine .content .text-box {
    gap: 10px;
  }
  .tag {
    gap: 2.5px 10px;
    padding: 15px;
    border-radius: 10px;
  }
  .half-wrap .text-box .tag {
    margin-top: 20px;
  }
  .general-medicine .medicine-subjects .healing {
    margin-top: 80px;
  }
  .general-medicine .medicine-subjects .healing::before {
    top: -40px;
  }
  .general-medicine .medicine-subjects .healing strong {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .general-medicine .medicine-subjects .healing-box figure {
    border-radius: 15px;
  }
  .general-medicine .medicine-subjects .healing-box {
    flex-direction: column;
    gap: 15px;
  }
  .general-medicine .medicine-subjects .healing-box .text p {
    margin-top: 10px;
  }
}

/* =========================
  진료서비스 > 외과 클리닉
========================= */
.surgery-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.surgery-wrap .img-box {
  width: 50%;
  height: 500px;
  border-radius: var(--border30);
  overflow: hidden;
}
.surgery-wrap .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.surgery-wrap .text-box {
  width: calc(50% - 60px);
}
.surgery-wrap .text-box p span {
  font-weight: var(--fw-700);
  color: var(--mint);
}
.surgery-wrap .btn-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.surgery-wrap .btn-box .btn {
  border: 1px solid var(--mint);
  color: var(--mint);
}
.surgery-wrap .btn-box .btn:first-child {
  color: var(--white);
  background: var(--mint);
}
.surgery-wrap .btn-box .btn:first-child:hover {
  background: var(--black);
  border: 1px solid var(--black);
}
.surgery-wrap .btn-box .btn:hover {
  color: var(--white);
}
.surgery-specialty-section .feature-swiper .feature-slide01 {
  background: url(/img/sub/two-surgeons-operating-patient.jpg) no-repeat center / cover;
}
.surgery-specialty-section .feature-swiper .feature-slide02 {
  background: url(/img/sub/interior/surgery/surgery1-01.jpg) no-repeat center / cover;
}
.surgery-specialty-section .feature-swiper .feature-slide03 {
  background: url(/img/sub/vet-operating-room.jpg) no-repeat center / cover;
}
.surgery-grid-card .card-box:nth-child(1)::before {
  background: url(/img/sub/svg/surgery-grid-card01.svg) no-repeat center / contain;
}
.surgery-grid-card .card-box:nth-child(2)::before {
  background: url(/img/sub/svg/surgery-grid-card02.svg) no-repeat center / contain;
}
.surgery-grid-card .card-box:nth-child(3)::before {
  background: url(/img/sub/svg/surgery-grid-card03.png) no-repeat center / contain;
}
.surgery-grid-card .card-box:nth-child(4)::before {
  background: url(/img/sub/svg/surgery-grid-card04.svg) no-repeat center / contain;
}
.surgery-grid-card .card-box:nth-child(5)::before {
  background: url(/img/sub/svg/surgery-grid-card05.svg) no-repeat center / contain;
}
.surgery-grid-card .card-box:nth-child(6)::before {
  background: url(/img/sub/svg/surgery-grid-card06.svg) no-repeat center / contain;
}

/* 반응형 */
@media (max-width: 1280px) {
  .surgery-wrap {
    align-items: stretch;
    gap: 40px;
  }
  .surgery-wrap .img-box {
    position: relative;
    height: auto;
  }
}

@media (max-width: 1024px) {
  .surgery-wrap {
    flex-direction: column;
  }
  .surgery-wrap .img-box {
    width: 100%;
    height: 400px;
  }
  .surgery-wrap .text-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .surgery-wrap {
    gap: 20px;
  }
  .surgery-wrap .img-box {
    height: 350px;
  }
}

/* =========================
  진료서비스 > 안과/치과 클리닉
========================= */
.eye-section {
  background: linear-gradient(to top, var(--skyblue), var(--white));
}
.dentistry-section,
.scaling-section {
  padding: var(--padding160);
}

.eye-wrap > strong {
  display: block;
  margin: 80px 0;
  text-align: center;
  line-height: 1.3;
  font-size: var(--fs-h2-2);
}
.eye-wrap > strong span {
  color: var(--mint);
}

.eye-wrap .img-box {
  position: relative;
  overflow: hidden;
  height: 500px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--border30);
}
.eye-wrap .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* 반응형 */
@media (max-width: 1280px) {
  .eye-wrap .img-box {
    height: 450px;
  }
}
@media (max-width: 1024px) {
  .eye-wrap .img-box {
    height: 400px;
  }
  .eye-wrap > strong {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .eye-wrap .img-box {
    height: 350px;
  }
  .eye-wrap > strong {
    margin: 40px 0;
  }
}
@media (max-width: 480px) {
  .eye-wrap .img-box {
    height: 250px;
  }
  .eye-wrap > strong {
    margin: 30px 0;
  }
}

/* =========================
  진료서비스 > 치과 클리닉
========================= */
.dentistry-section .sub-inner::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 350px;
  height: 350px;
  background: url(/img/symbol-db.svg) no-repeat center / cover;
  opacity: .4;
  z-index: 0;
}
.scaling-section {
  background-color: var(--skyblue);
}
.scaling-wrap > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background-color: var(--white);
  border-radius: var(--border30);
}
.dog-scaling {
  margin-bottom: 50px;
}
.scaling-wrap .text-box {
  width: calc((100% - 60px) / 2);
}
.scaling-wrap .text-box h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: var(--fs-h2-2);
  font-weight: var(--fw-700);
}
.scaling-wrap .text-box h5::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 27px;
  background: url(/img/sub/dentistry/footprint.svg) no-repeat center;
}
.scaling-wrap .text-box p {
  font-size: var(--fs-sub);
  color: var(--c666);
}
.scaling-wrap .text-box p span {
  color: var(--mint);
  font-weight: var(--fw-700);
}
.scaling-swiper {
  width: 50%;
}
.scaling-wrap .swiper-slide {
  display: flex;
  align-items: center;
  gap: 20px;
}
.arrow {
  flex: 1;
  min-width: 30px;
  transform: translateY(-10px);
}
.scaling-wrap .swiper-slide .img-box {
  overflow: hidden;
  border-radius: 20px;
}
.scaling-wrap .swiper-slide span {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-weight: var(--fw-700);
}
@media (max-width: 1280px) {
  .dentistry-section .sub-inner::after {
    width: 300px;
    height: 300px;
  }
  .scaling-wrap > div {
    gap: 50px;
    padding: 50px;
  }
  .arrow {
    min-width: 25px;
  }
}
@media (max-width: 1024px) {
  .scaling-wrap > div {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }
  .scaling-wrap .text-box {
    width: 100%;
  }
  .scaling-swiper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .dentistry-section .sub-inner::after {
    width: 200px;
    height: 200px;
  }
  .scaling-wrap > div {
    gap: 25px;
    padding: 30px;
  }
  .scaling-wrap .text-box h5 {
    margin-bottom: 15px;
  }
  .scaling-wrap .text-box h5::before {
    width: 25px;
    height: 23px;
  }
  .scaling-wrap .swiper-slide {
    gap: 15px;
  }
  .scaling-wrap .swiper-slide .img-box {
    border-radius: 15px;
  }
  .arrow {
    min-width: 20px;
  }
}
@media (max-width: 480px) {
  .dentistry-section .sub-inner::after {
    display: none;
  }
  .scaling-wrap .swiper-slide .img-box {
    border-radius: 10px;
  }
  .scaling-wrap .text-box h5 {
    margin-bottom: 10px;
  }
  .scaling-wrap .text-box h5::before {
    width: 20px;
    height: 18px;
  }
  .scaling-wrap > div {
    gap: 20px;
    padding: 20px;
  }
  .scaling-wrap .swiper-slide {
    gap: 10px;
  }
}

/* =========================
  진료서비스 > 예방의학 클리닉
========================= */
.program-section {
  position: relative;
  padding: var(--padding160);
  background: #f8f8f8;
	overflow: hidden;
}
.program-section .bg {
	width: 42%;
}
.program-section .tit-box {
  margin-bottom: 60px;
}
.program-section .sub-inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.program-section .left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 40%;
  padding-right: 60px;
}
.explanation {
  padding: 30px;
  background: var(--white);
  border-radius: var(--border30);
}
.explanation strong {
  display: block;
  margin-bottom: 10px;
  font-size: var(--fs-sub);
}
.explanation ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.explanation ul li {
  display: flex;
  gap: 5px;
  color: var(--c666);
}
.explanation ul li::before {
  content: '·';
  display: block;
}
.program-section .right {
  width: 60%;
}
.program-list .item {
  display: none;
}
.program-section .right h5 {
  margin-bottom: 40px;
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: var(--fw-700);
}
.vaccine-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--border30);
}
.vaccine-table th {
  padding: 20px 0;
  text-align: center;
  font-size:  var(--fs-h5);
  font-weight: var(--fw-700);
  color: #fff;
  background-color: #2cb6b8;
}
.vaccine-table td {
  padding: 20px 0;
  text-align: center;
  color: var(--c666);
}
.vaccine-table td:not(:first-child) {
  width: 13%;
}
.cat-program .vaccine-table td:not(:first-child) {
  width: 18%;
}
.vaccine-table td:not(:last-child) {
  border-right: 1px solid var(--eee);
}
.vaccine-table tr:nth-child(even) {
  background-color: var(--skyblue);
}
.vaccine-table td:first-child {
  padding: 20px;
  text-align: left;
  font-size:  var(--fs-sub);
  font-weight: var(--fw-700);
  color: var(--black);
}

/*고양이*/
.cat-program .vaccine-table th {
  background-color: #7f55b1;
}
.cat-program .vaccine-table tr:nth-child(even) {
    background-color: #fbf8ff;
}
/* 반응형 */
@media (max-width: 1280px) {
  .program-section .sub-inner {
		flex-direction: column;
	}
	.program-section .bg {
		display: none;
	}
	.program-section .tit-box .tit strong br {
    display: none;
	}
  .program-section .standard-nav {
    gap: 10px;
  }
	.program-section .standard-nav li {
		width: 280px;
	}
  .program-section .standard-nav li a {
    border: 1px solid var(--mint);
  }
	.program-section .left {
		width: 100%;
		align-items: center;
		padding-right: 0;
		text-align: center;
	}
	.program-section .left .top {
		width: 100%;
	}
	.program-section .tit-box {
		align-items: center;
		margin-bottom: 40px;
	}
	.program-section .left .explanation {
		display: none !important;
	}
  .program-section .right .item .explanation {
    display: block !important;
    margin-top: 30px;
		padding: 25px;
  }
	.program-section .right {
    width: 100%;
	}
}

@media (max-width: 1024px) {
  .program-section .standard-nav li {
		width: 260px;
	}
	.program-section .right h5 {
		margin-bottom: 30px;
	}
	.vaccine-table td:first-child {
	  width: 25%;
	}
	.vaccine-table td:not(:first-child) {
		width: 12%;
	}
	.program-section .right .item .explanation {
		padding: 20px;
	}
}

@media (max-width: 768px) {
	.program-section .tit-box {
		margin-bottom: 30px;
	}
  .program-section .sub-inner {
		gap: 40px;
	}
	.program-section .standard-nav li {
		width: calc((100% / 2) - 10px);
	}
	.program-section .right h5 {
			margin-bottom: 20px;
	}
	.vaccine-table th,
	.vaccine-table td {
		padding: 15px 0;
	}
	.vaccine-table td:first-child {
		width: 20%;
		padding: 15px;
	}
	.program-section .right .item .explanation {
    padding: 15px;
    margin-top: 25px;
	}
}

@media (max-width: 480px) {
	.program-section .tit-box {
		margin-bottom: 20px;
	}
  .program-section .standard-nav {
		gap: 5px;
	}
    .program-section .standard-nav li {
      width: calc((100% / 2) - 5px);
    }
  .program-section .right h5 {
    margin-bottom: 15px;
  }
	.vaccine-table th,
	.vaccine-table td {
		padding: 5px;
	}
  .program-section .right .item .explanation {
    margin-top: 20px;
  }
  .explanation strong {
    margin-bottom: 5px;
  }
}

/* =========================
  진료서비스 > 대형견
========================= */
.largedog-banner {
  background: url(/img/sub/preventive-banner.jpg) no-repeat center / cover;
}

/* =========================
  수술/재활 전문센터 > 고난이도 수술 전문 센터
========================= */
.highlevel-page .about-section .tit strong {
  color: var(--mint);
}
.highlevel-first {
  padding-bottom: 160px;
}
/* 탭 내비게이션 */
#tap-nav {
  background: var(--skyblue);
  margin-bottom: 80px;
}
#tap-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#tap-nav ul li {
  width: calc(100% / 5);
}
#tap-nav ul li a {
  display: block;
  padding: 20px 0;
  text-align: center;
}
#tap-nav ul li.on a {
  background: rgba(224, 236, 244, .4);
  border-radius: 5px;
  color: var(--mint);
  font-weight: var(--fw-700);
}
.tumor-list li figure {
  position: relative;
  border-radius: 100px;
  background: var(--mint);
}
.tumor-list li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 53%;
  transform: translate(-50%, -50%);
}
.tumor-banner {
  background: url(/img/sub/highlevel/tumor-banner.jpg) no-repeat center;
}
.tumor-banner strong {
  font-size: var(--fs-h3);
  line-height: 1.5;
}
.tumor-banner strong span {
  color: var(--mint);
}

/*  반응형 */
@media (max-width: 1024px) {
  .highlevel-first {
    padding-bottom: 120px;
  }
}

@media (max-width: 768px) {
  .highlevel-first {
    padding-bottom: 100px;
  }
  #tap-nav ul {
    justify-content: flex-start;
  }
  #tap-nav ul li {
    width: calc(100% / 3);
  }
}

@media (max-width: 480px) {
  .highlevel-first {
    padding-bottom: 80px;
  }
  #tap-nav .sub-inner {
    width: 100%;
  }
  #tap-nav ul li {
    width: calc(100% / 2);
  }
  #tap-nav ul li a {
    padding: 15px 0;
    font-size: 14px;
  }
}

/* =========================
  수술/재활 전문센터 > 고난이도 수술 전문 센터 > 재활센터
========================= */
.purpose-section {
  padding: var(--padding160);
  background: var(--skyblue);
}
.icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.icon-wrap li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 230px;
  height: 230px;
  border: 1px solid var(--mint);
  border-radius: 1000px;
  background: var(--white);
}
.icon-wrap li figure {
  width: 100px;
}
.icon-wrap li p {
  font-size: var(--fs-sub);
  font-weight: var(--fw-700);
}
.when {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 105px;
}
.when strong {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 10px 30px;
  border-radius: 100px;
  color: var(--white);
  background: var(--mint);
  font-size: var(--fs-h4);
  transform: translate(-50%, -50%);
  width: max-content;
}
.when p {
  padding: 55px 30px;
  border: 1px solid var(--eee);
  border-radius: var(--border30);
  text-align: center;
  background: var(--white);
  font-size: var(--fs-sub);
  color: var(--c666);
}
.rehabilitation-tap-nav {
  margin-top: 160px;
}
.rehabilitation-tap-nav ul {
  justify-content: center;
}
.number-half-bigimg-wrap .tit {
  margin-bottom: 40px;
  font-size: var(--fs-h2);
  font-weight: var(--fw-700);
}
#laser-section {
  padding: var(--padding160);
}
#joint-section {
  padding: var(--padding160);
  background: var(--skyblue);
}
#joint-section .table-box {
  max-width: 1200px;
  margin: 0 auto;
}
#joint-section .vaccine-table td:not(:first-child) {
  width: auto;
  padding: 20px;
  text-align: left;
  color: #333;
}
#joint-section .vaccine-table tr:nth-child(even) {
  background-color: #f8f8f8;
}
#joint-section .vaccine-table td:first-child {
  width: 20%;
}
#swimming-section {
  padding: var(--padding160);
}
#swimming-section .tit-box p {
  font-size: var(--fs-sub);
}
#swimming-section .tit-box p span {
  color: var(--c666);
}
.swimming-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
  .info-message {
    display: none;
    text-align: center;
    margin-bottom: 10px;
    color: var(--c666);
  }

/* 반응형 */
@media (max-width: 1280px) {
  .icon-wrap {
    gap: 20px;
  }
  .icon-wrap li {
    width: 200px;
    height: 200px;
  }
  .icon-wrap li figure {
      width: 80px;
  }
  .when p {
    padding: 45px 30px;
  }
}

@media (max-width: 1024px) {
  .icon-wrap li {
    width: 160px;
    height: 160px;
    gap: 10px;
  }
  .icon-wrap li figure {
      width: 70px;
  }
  .when {
    margin-top: 95px;
  }
  .when p {
    padding: 45px 30px 30px;
  }
  .when p br {
    display: none;
  }
  .rehabilitation-tap-nav {
    margin-top: 120px;
  }
  .swimming-wrap {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .purpose-section .tit-box p br {
    display: none;
  }
  .icon-wrap {
    flex-wrap: wrap;
    gap: 15px;
    max-width: 315px;
    margin: 0 auto;
  }
  .icon-wrap li {
    width: 150px;
    height: 150px;
    gap: 10px;
  }
  .icon-wrap li figure {
    width: 60px;
  }
  .when {
    margin-top: 65px;
  }
  .when p {
    padding: 40px 25px 25px;
  }
  .rehabilitation-tap-nav {
    margin-top: 100px;
  }
  #joint-section .table-box {
    overflow-x: scroll;
  }
  #joint-section .vaccine-table {
    min-width: 670px;
  }
  #joint-section .vaccine-table td:first-child {
    width: 15%;
  }
  .swimming-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
  .swimming-wrap li {
    width: calc((100% - 15px) / 2);
  }
  .info-message {
    display: block;
  }
}

@media (max-width: 480px) {
  .icon-wrap {
    gap: 10px;
    max-width: 300px;
  }
  .icon-wrap li {
    width: 140px;
    height: 140px;
    gap: 8px;
  }
  .icon-wrap li figure {
    width: 55px;
  }
  .when strong {
    padding: 8px 20px;
  }
  .when p {
    padding: 33px 15px 15px;
  }
  .rehabilitation-tap-nav {
    margin-top: 80px;
  }
  .vaccine-table th {
    padding: 15px 0;
  }
  #joint-section .vaccine-table td:first-child {
    width: 13%;
  }
  .vaccine-table td:first-child,
  #joint-section .vaccine-table td:not(:first-child) {
    padding: 10px;
  }
  .swimming-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }
  .swimming-wrap li {
    width: calc((100% - 10px) / 2);
  }
  .swimming-wrap p {
    display: none;
  }
}

/* =========================
  특화치료센터 > 심장특화센터
========================= */
.heart-first-section .half-wrap .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 하이엔드 초음파 장비 */
.samsung-v6 {
  position: relative;
  padding: var(--padding160);
  background: var(--skyblue);
}
.samsung-v6::before {
  position: absolute;
  bottom: 110px;
  right: 50%;
  z-index: auto;
  content: "high-end";
  font-family: "PT Serif", serif;
  font-weight: var(--fw-700);
  font-size: 15rem;
  color: var(--darkskyblue);
  white-space: nowrap;
}
.samsung-v6 .half-wrap {
  flex-direction: row-reverse;
}
.samsung-v6 .half-wrap .img-box {
  height: 550px;
}
.samsung-v6 .half-wrap .img-box img {
  object-fit: contain;
}
.heart-slid-box {
  position: relative;
}
.heartSwiper {
  width: 80%;
  margin-top: 60px;
}
.heartSwiper .swiper-slide figure {
  overflow: hidden;
  border-radius: 15px;
}
.heart-banner {
  position: relative;
  padding: var(--padding160);
  color: var(--white);
  background: url(/img/sub/special/heart-banner.jpg) no-repeat center / cover;
}
.heart-banner h5 {
  margin-bottom: 40px;
  font-family: "PT Serif", serif;
  font-size: var(--fs-h1);
  font-weight: var(--fw-700);
}
.heart-banner p {
  font-size: var(--fs-sub);
}

/* 카드 그리드 */
.heart-grid-card .card-box {
  height: 375px;
}
.heart-grid-card .card-box:nth-child(1)::before { background: url(/img/sub/svg/heart-grid-card01.png) no-repeat center / contain; }
.heart-grid-card .card-box:nth-child(2)::before { background: url(/img/sub/svg/heart-grid-card02.png) no-repeat center / contain; }
.heart-grid-card .card-box:nth-child(3)::before { background: url(/img/sub/svg/heart-grid-card03.png) no-repeat center / contain; }
.heart-grid-card .card-box:nth-child(4)::before { background: url(/img/sub/svg/heart-grid-card04.png) no-repeat center / contain; }
.heart-grid-card .card-box:nth-child(5)::before { background: url(/img/sub/svg/heart-grid-card05.png) no-repeat center / contain; }
.heart-grid-card .card-box:nth-child(6)::before { background: url(/img/sub/svg/heart-grid-card06.png) no-repeat center / contain; }

/* 반응형 */
@media (max-width: 1280px) {
  .heart-first-section .half-wrap .img-box img { height: 70%; }
  .samsung-v6::before { right: 60%; font-size: 10rem; }
  .samsung-v6 .half-wrap .img-box { width: 40%; }
  .samsung-v6 .half-wrap .text-box { width: calc(60% - 60px); }
  .heart-banner { background: url(/img/sub/special/heart-banner.jpg) no-repeat 70% center / cover; }
  .heart-banner::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; content: ''; background: rgba(0,0,0,.7); }
}
@media (max-width: 1024px) {
  .heart-first-section .half-wrap .img-box img { width: 590px; height: auto; }
  .samsung-v6::before { 
    top: 21%; 
    left: 50%;
    bottom: auto; 
    right: auto;
    transform: translateX(-50%);
    font-size: 15rem;
    }
  .samsung-v6 .half-wrap { flex-direction: column-reverse; }
  .samsung-v6 .half-wrap .img-box { width: 100%; height: 400px; }
  .samsung-v6 .half-wrap .text-box { width: 100%; }
  .samsung-v6 .mix-tit br { display: none; }
  .heartSwiper { margin-top: 40px; }
  .heart-banner h5 { margin-bottom: 30px; }
}
@media (max-width: 768px) {
  .heart-first-section .half-wrap .img-box img { width: 480px; }
    .samsung-v6::before { 
    top: 23%; 
    font-size: 13rem;
    }
  .samsung-v6 .half-wrap .img-box { height: 350px; }
  .heartSwiper { margin-top: 30px; }
  .heart-banner { background: url(/img/sub/special/heart-banner.jpg) no-repeat 87% center / cover; }
  .heart-banner h5 { margin-bottom: 20px; }
  .heart-grid-card .card-box { height: 312px; }
}
@media (max-width: 644px) {
  .heart-grid-card .card-box { min-height: 140px; height: auto; }
}
@media (max-width: 480px) {
  .heart-first-section .half-wrap .img-box img { width: 330px; }
  .samsung-v6 .half-wrap .img-box { height: 250px; }
  .samsung-v6::before {
    font-size: 8rem;
    top: 22%;
  }
  .heartSwiper { width: 70%; margin-top: 20px; }
  .heart-banner { text-align: center; }
}

/* =========================
  특화치료센터 > 호흡기 특화센터
========================= */
.breathing-second-section .p-box {
  margin-bottom: 30px;
}
.breathing-second-section .p-box p > span {
  display: inline-block;
}
.hfnc-section {
  padding: var(--padding160);
}
.hfnc-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hfnc-wrap figure {
  position: relative;
  width: 35%;
  height: 0;
  padding-bottom: 550px;
  overflow: hidden;
  border-radius: var(--border30);
  background: var(--skyblue);
}
.hfnc-wrap figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 240px;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.hfnc-wrap .column-list {
  flex: 1;
}
.hfnc-wrap .column-list li p {
  color: var(--c666) !important;
}
.hfnc-wrap .column-list li p span {
  font-weight: var(--fw-700);
  color: var(--mint);
}
.breathing-banner {
  background: url(/img/sub/special/breathing-banner.jpg) no-repeat center / cover;
}

/* 반응형 */
@media (max-width: 1440px) {
  .breathing-second-section .p-box p > span {
    display: inline;
  }
}
@media (max-width: 1024px) {
  .second-section .half-wrap { flex-direction: column-reverse; }
  .breathing-second-section .p-box { margin-bottom: 25px; }
  .hfnc-wrap { flex-direction: column; gap: 40px; }
  .hfnc-wrap figure { width: 100%; padding-bottom: 400px; }
  .hfnc-wrap figure img { max-width: 180px; }
}
@media (max-width: 768px) {
  .breathing-second-section .p-box { margin-bottom: 20px; }
  .hfnc-wrap { gap: 30px; }
  .hfnc-wrap figure { padding-bottom: 350px; }
  .hfnc-wrap figure img { max-width: 150px; }
}
@media (max-width: 480px) {
  .breathing-second-section .p-box { margin-bottom: 15px; }
  .hfnc-wrap { gap: 20px; }
  .hfnc-wrap figure { padding-bottom: 250px; }
  .hfnc-wrap figure img { max-width: 110px; }
}

/* =========================
  특화치료센터 > 슬개골 특화센터
========================= */
.patella-step-wrap {
  padding: 60px;
  text-align: center;
  border-radius: var(--border30);
  background: var(--white);
}
.step-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px 20px;
}
.step-list li {
  width: calc((100% - 80px) / 5);
}
.step-list li figure {
  overflow: hidden;
  border-radius: 15px;
}
.step-list li span {
  display: inline-block;
  margin: 20px 0 0;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: var(--fs-sub);
  font-weight: var(--fw-700);
  color: var(--white);
}
.step-list li:nth-child(1) span { background: var(--mint); }
.step-list li:nth-child(2) span { background: #009296; }
.step-list li:nth-child(3) span { background: #006f73; }
.step-list li:nth-child(4) span { background: #004d52; }
.step-list li:nth-child(5) span { background: #002f32; }

.patella-step-wrap p {
  margin-top: 60px;
  font-size: var(--fs-sub);
  color: var(--c666);
}

.patellar-table-box .horizontal-table:nth-child(1) .table-left h5::before {
  display: block;
  width: 34px;
  height: 90px;
  margin: 0 auto 20px;
  content: '';
  background: url(/img/sub/special/bone.png) no-repeat center / cover;
}
.patellar-table-box .horizontal-table:nth-child(2) .table-left h5::before {
  display: block;
  width: 42px;
  height: 90px;
  margin: 0 auto 20px;
  content: '';
  background: url(/img/sub/special/soft-tissue.png) no-repeat center / cover;
}
.patellar-table-box .table-right table th {
  width: 30%;
}

.dimmed-gallery,
.ligament-section {
  padding: var(--padding160);
}

.patellar-banner {
  background: url(/img/sub/special/breathing-banner.jpg) no-repeat center / cover;
}

/* 반응형 */
@media (max-width: 1280px) {
  .patella-step-wrap { padding: 40px; }
  .patella-step-wrap p { margin-top: 40px; }
}
@media (max-width: 1024px) {
  .patella-step-wrap p br { display: none; }
  .step-list { gap: 30px 20px; }
  .step-list li { width: calc((100% - 40px) / 3); }
  .patellar-table-box .horizontal-table:nth-child(1) .table-left h5::before,
  .patellar-table-box .horizontal-table:nth-child(2) .table-left h5::before { width: 20px; height: 40px; margin: 0; }
}
@media (max-width: 768px) {
  .patella-step-wrap { padding: 30px; }
  .patella-step-wrap p { margin-top: 30px; }
  .step-list { justify-content: flex-start; gap: 25px 15px; }
  .step-list li { width: calc((100% - 15px) / 2); }
  .step-list li span { margin: 15px 0 0; }
  .patellar-table-box .horizontal-table:nth-child(1) .table-left h5::before,
  .patellar-table-box .horizontal-table:nth-child(2) .table-left h5::before { width: 18px; height: 35px; }
  .patellar-banner h5 br { display: none; }
}
@media (max-width: 480px) {
  .patella-step-wrap { padding: 15px; }
  .patella-step-wrap p { margin-top: 20px; }
  .step-list { gap: 20px 10px; }
  .step-list li { width: calc((100% - 10px) / 2); }
  .step-list li span { margin: 10px 0 0; padding: 5px 15px; }
}

/* =========================
  특화치료센터 > 십자인대 특화센터
========================= */
.ligament-cure-section,
.ligament-dimmed-gallery {
    background: var(--skyblue);
}
.ligament-cure-section .half-wrap > .img-box {
  flex: 1;
}
.ligament-cure-section .half-wrap > .img-box img {
  top: 50%;
  left: 50%;
  width: auto;
  transform: translate(-50%, -50%);
	position: absolute;
}
.ligamentSwiper .swiper-wrapper {
    align-items: stretch;
    height: auto;
}
.ligament-slide-box {
  position: relative;
  width: 50%;
}
.ligament-slide-box .swiper {
	display: flex;
  align-items: stretch;
  width: 80%;
}
.ligament-slide-box .swiper-slide {
	display: flex;
  flex-direction: column;
  border-radius: var(--border30);
  overflow: hidden;
  background: var(--white);
}
.ligament-slide-box .img-box {
	width: 100%;
	aspect-ratio: 5 / 2.6;
	height: auto;
	flex-shrink: 0;
}
.ligament-slide-box .img-box img {
  position: absolute;
	transform: scale(1.1);
}
.ligament-slide-box .text-box {
  width: 100%;
  padding: 35px;
	flex: 1;
}
.ligament-slide-box .text-box .cure-tit-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ligament-slide-box .text-box .cure-tit-box strong {
  font-size: var(--fs-h4);
}
.ligament-slide-box .text-box .cure-tit-box span {
  font-size: var(--fs-xsmall);
  color: var(--c666);
}
.ligament-slide-box .text-box p {
  margin-top: 20px;
  font-size: var(--fs-body);
}
/* 섹션 5 */
.ligament-treatment-case {
      background: none;
}
.ligament-treatment-case .text-box {
    background: var(--skyblue);
}
.ligament-banner {
    background: url(/img/sub/two-surgeons-operating-patient.jpg) no-repeat center 20% / cover;
}
.ligament-banner h5 {
    margin-top: 5px;
    margin-bottom: 0;
}

/* 반응형 */
@media (max-width: 1280px) {
  .ligament-cure-section .half-wrap {
    gap: 50px;
  }
	.ligament-cure-section .half-wrap > .img-box img {
		height: 425px;
	}
	.ligament-slide-box .img-box {
	  aspect-ratio: 5 / 3;
	}

}
@media (max-width: 1024px) {
  .ligament-cure-section .half-wrap {
    gap: 40px;
  }
  .ligament-cure-section .half-wrap > .img-box {
    width: 100%;
    height: 400px;
    flex: none;
  }
  .ligament-cure-section .half-wrap > .img-box img {
    height: 100%;
  }
  .ligament-slide-box {
    width: 80%;
  }
  .ligament-slide-box .img-box {
      aspect-ratio: 5 / 2.8;
  }
  .ligament-slide-box .text-box {
    padding: 25px;
  }
  .ligament-slide-box .text-box p {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .ligament-cure-section .half-wrap > .img-box {
    height: 350px;
  }
  .ligament-slide-box {
    width: 100%;
  }
  .ligament-slide-box .swiper {
    width: 90%;
  }
  .ligament-slide-box .text-box {
    padding: 20px;
  }
  .ligament-slide-box .text-box p {
    margin-top: 10px;
  }
  .ligament-banner h5 {
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .ligament-cure-section .half-wrap > .img-box {
    height: 250px;
  }
  .ligament-slide-box .swiper {
    width: 100%;
  }
  .ligament-slide-box .text-box {
    padding: 15px;
  }
  .ligament-slide-box .swiper-button-prev {
    left: 2%;
  }
  .ligament-slide-box .swiper-button-next {
    right: 2%;
  }
}

/* =========================
  특화치료센터 > 종양 특화센터
========================= */
.special-page .tabslide-section .left {
  position: relative;
}
.special-page .tabslide-section .left::after {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: block;
  content: '';
  background: url(/img/symbol-db.svg) no-repeat center / cover;
  width: 300px;
  height: 300px;
  z-index: 0;
  opacity: .3;
  z-index: -1;
}
/* 암 진단 프로세스 */
.processSwiper {
  padding-bottom: 70px;
}
.processSwiper .img-box {
    position: relative;
    height: 400px;
    border-radius: var(--border30);
    overflow: hidden;
}
.processSwiper .img-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    object-fit: cover;
}
.processSwiper .text-box {
  margin-top: 40px;
}
.processSwiper .text-box h5 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-700);
}
.processSwiper .text-box p {
  margin-top: 15px;
  font-size: var(--fs-sub);
}
.processSwiper .swiper-pagination-progressbar {
  position: absolute;
  top: auto;
  bottom: 0px;
  margin-top: 0px;
}
/* 아코디언 UI*/
.accordion-section {
  position: relative;
  padding: var(--padding160);
  background: url(/img/sub/special/accordion-bg.jpg) no-repeat center/cover;
}
.accordion-section .tit {
  color: var(--white);
}
.accordion-section::before {
content: '';
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .7);
position: absolute;
top: 0;
left: 0;
}
.accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.accordion-wrap .item {
  transition: var(--transition);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}
.accordion-wrap .que {
  position: relative;
  padding: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  transition: var(--transition);
}
.accordion-wrap .que:hover .text-box strong {
  color: var(--mint);
}
.accordion-wrap .que .text-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.accordion-wrap .que span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--mint);
  color: var(--white);
  border-radius: 100px;
  text-align: center;
  line-height: 40px;
  font-size: var(--fs-h5);
  font-weight: var(--fw-700);
}
.accordion-wrap .que strong {
  font-size: var(--fs-h4);
  transition: var(--transition);
}
.accordion-wrap .que i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 100%;
  font-size: 18px;
  color: var(--c666);
  transition: var(--transition);
}
/* 열림 상태 */
.accordion-wrap .item.active .que {
    border-radius: 20px 20px 0 0;
}
.accordion-wrap .item.active .que i {
  color: var(--mint);
}
/* 답변 */
.accordion-wrap .anw {
  display: none;
  padding: 40px 60px;
  background: var(--skyblue);
  border-radius: 0 0 20px 20px;
}
.accordion-wrap .anw p {
  font-size: var(--fs-sub);
}
.accordion-wrap .anw span {
  color: var(--mint);
  font-weight: var(--fw-700);
}
/*PDST 대상*/
.pdst-section {
  padding: var(--padding160);
}
.pdst-section .tit-box {
  margin-bottom: 40px;
}
/*배너*/
.special-tumor-banner {
  background: url(/img/sub/special/special-tumor-banner.jpg) no-repeat center / cover;
}
.special-tumor-banner h5 {
  margin-bottom: 0;
}

/* 반응형 */
@media (max-width: 1280px) {
  .special-page .tabslide-section .left::after {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 1024px) {
  .special-page .tabslide-section .left::after {
    width: 200px;
    height: 200px;
  }
  .processSwiper {
    padding-bottom: 60px;
  }
  .processSwiper .img-box {
      height: 350px;
  }
  .processSwiper .text-box {
    margin-top: 30px;
  }
  .processSwiper .text-box p {
    margin-top: 10px;
  }
  /* 아코디언 */
  .accordion-wrap .que {
    padding: 25px;
  }
  .accordion-wrap .anw {
    padding: 30px 80px;
  }
}

@media (max-width: 768px) {
  .special-page .tabslide-section .left::after {
    display: none;
  }
  .processSwiper {
    padding-bottom: 50px;
  }
  .processSwiper .img-box {
    height: 350px;
  }
  .processSwiper .text-box {
    margin-top: 20px;
  }
  .processSwiper .text-box p {
    margin-top: 5px;
  }
  .processSwiper .swiper-pagination-progressbar {
    background: var(--skyblue);
  }
  /* 아코디언 */
  .accordion-wrap .que {
    padding: 15px 20px;
  }
  .accordion-wrap .que .text-box {
    gap: 15px;
  }
  .accordion-wrap .que span {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .accordion-wrap .que i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .accordion-wrap .anw {
    padding: 25px 30px;
  }
}

@media (max-width: 480px) {
  .processSwiper {
    padding-bottom: 40px;
  }
  .processSwiper .img-box {
    height: 250px;
  }
  .processSwiper .text-box {
    margin-top: 15px;
  }
  /* 아코디언 */
  .accordion-wrap .item {
    border-radius: 15px;
  }
  .accordion-wrap .que .text-box {
    gap: 10px;
  }
  .accordion-wrap .que span {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .accordion-wrap .que i {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .accordion-wrap .anw {
    padding: 20px;
    border-radius: 0 0 15px 15px;
  }
}

/* =========================
  고양이전문센터 > 고양이 특화치료
========================= */
.onlycat-page {
  /* cat theme override */
  --mint: #7f55b1;
  --skyblue: #f5f5f5;
}

/* 갤러리 영역 */
.onlycat-page .dimmed-gallery {
  padding: 0 0 160px;
}

/* 고양이 반/절 이미지 구성 */
.cat-half-bigimg-wrap > figure {
  width: 40%;
}
.cat-half-bigimg-wrap .text-box {
  width: 60%;
  background: var(--white);
}
.cat-half-bigimg-wrap .summary {
  background: var(--skyblue);
}
.cat-half-bigimg-wrap .summary figure {
  background: var(--white);
}
.cat-half-bigimg-wrap .summary figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: auto;
  transform: translate(-50%, -50%);
}
.onlycat-page .half-bigimg-wrap > figure::before,
.onlycat-page .half-bigimg-wrap > figure::after {
  display: none;
}
.onlycat-page .summary .p-box {
  flex: 1;
}

/* 맞춤 섹션 */
.custom-section {
  padding: var(--padding160);
  background: var(--skyblue);
}
.custom-section .half-wrap .img-box {
  position: relative;
  background: var(--white);
}
.custom-section .half-wrap .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  height: auto;
  transform: translate(-50%, -50%);
}

/* 카드 그리드 */
.cat-grid-card .card-grid {
  max-width: 100%;
}
.cat-grid-card .card-box li::before {
  background: url(/img/sub/svg/round-plus-p.svg) no-repeat center;
}
.cat-grid-card .card-box:nth-child(1)::before { background: url(/img/sub/cat/grid-card01.svg) no-repeat center / contain; }
.cat-grid-card .card-box:nth-child(2)::before { background: url(/img/sub/cat/grid-card02.svg) no-repeat center / contain; }
.cat-grid-card .card-box:nth-child(3)::before { background: url(/img/sub/cat/grid-card03.svg) no-repeat center / contain; }
.cat-grid-card .card-box:nth-child(4)::before { background: url(/img/sub/cat/grid-card04.svg) no-repeat center / contain; }
.cat-grid-card .card-box:nth-child(5)::before { background: url(/img/sub/cat/grid-card05.svg) no-repeat center / contain; }
.cat-grid-card .card-box:nth-child(6)::before { background: url(/img/sub/cat/grid-card06.svg) no-repeat center / contain; }
.cat-grid-card .card-box:nth-child(7)::before { background: url(/img/sub/cat/grid-card07.svg) no-repeat center / contain; }
.cat-grid-card .card-box:nth-child(8)::before { background: url(/img/sub/cat/grid-card08.svg) no-repeat center / contain; }

/* 배너 */
.cat-banner {
  background: url(/img/sub/cat/cat-banner.jpg) no-repeat 60% center / cover;
  text-align: left;
}
.cat-banner::before {
  display: none;
}

/* =========================
  반응형
========================= */
@media (max-width: 1280px) {
  .cat-half-bigimg-wrap {
    flex-direction: column;
  }
  .cat-half-bigimg-wrap > figure {
    width: 100%;
    height: 550px;
  }
  .cat-half-bigimg-wrap .text-box {
    width: 100%;
    padding: 60px 5% 160px;
  }
}

@media (max-width: 1024px) {
  .onlycat-page .dimmed-gallery {
    padding: 0 0 120px;
  }
  .onlycat-page .first-section .half-wrap {
    flex-direction: column;
  }
  .onlycat-page .mix-tit br {
    display: none;
  }
  .cat-half-bigimg-wrap > figure {
    height: 400px;
  }
  .cat-half-bigimg-wrap .text-box {
    padding: 40px 5% 120px;
  }
  .custom-section .half-wrap .img-box {
    width: 400px;
  }
  .custom-section .half-wrap .img-box img {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .onlycat-page .dimmed-gallery {
    padding: 0 0 80px;
  }
  .cat-half-bigimg-wrap > figure {
    height: 350px;
  }
  .cat-half-bigimg-wrap .text-box {
    padding: 30px 5% 80px;
  }
  .custom-section .half-wrap .img-box {
    width: 350px;
  }
  .custom-section .half-wrap .img-box img {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .cat-half-bigimg-wrap > figure {
    height: 250px;
  }
  .cat-half-bigimg-wrap .text-box {
    padding: 20px 5% 80px;
  }
  .custom-section .half-wrap .img-box {
    width: 100%;
  }
  .custom-section .half-wrap .img-box img {
    width: 240px;
  }
  .cat-banner::before {
    display: block;
  }
}

/* =========================
  고양이전문센터 > FLUTD
========================= */
.flutd-half-bigimg-wrap {
  flex-direction: row-reverse;
}
.flutd-half-bigimg-wrap .mix-tit strong {
  color: var(--black);
}
.flutd-half-bigimg-wrap .text-box {
  padding: 160px 60px 160px calc((100vw - min(1400px, 90vw)) / 2);
}

.flutd-zigzag {
  background: var(--skyblue);
}

/* 반응형 */
@media (max-width: 1024px) {
  .flutd-half-bigimg-wrap .text-box {
    padding: 120px 40px 120px calc((100vw - min(1400px, 90vw)) / 2);
  }
}

@media (max-width: 768px) {
  .flutd-half-bigimg-wrap {
    flex-direction: column;
  }
  .flutd-half-bigimg-wrap .text-box {
    width: 100%;
    padding: 30px 5% 100px;
  }
  .flutd-half-bigimg-wrap > figure {
    width: 100%;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .flutd-half-bigimg-wrap .text-box {
    padding: 20px 5% 80px;
  }
  .half-bigimg-wrap > figure {
    height: 250px;
  }
}

/* =========================
  영상센터
========================= */
.videocenter-page section:not(.sub-visual):not(.first-section) {
  padding: var(--padding160);
}
.videocenter-first-section {
  position: relative;
  background: linear-gradient(to top, var(--skyblue), transparent);
}
.videocenter-first-section::before {
  position: absolute;
  bottom: 90px;
  right: 50%;
  color: rgba(48, 183, 186, .15);
  font-family: "PT Serif", serif;
  font-size: 11rem;
  font-weight: var(--fw-700);
  white-space: nowrap;
}
#ct-section::before {
  content: 'Woorien Veterinary CT';
}
#ultrasound-section::before {
  content: 'Samsung V6 Ultrasonic';
}
#xray-section::before {
  content: 'Animal Digital X-ray System';
}
#ct-section .img-box img,
.filming-section .img-box img,
#ultrasound-section .img-box img,
#xray-section .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 90%;
}
#ultrasound-section .img-box img {
  width: 285px;
}
#xray-section .img-box img {
  width: 370px;
}
.video-tit-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.video-tit-box h4 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-700);
}
.video-tit-box p {
  color: var(--mint) !important;
  font-weight: var(--fw-700);
}
.filming-section .info-table {
  margin-bottom: 0;
  max-width: 45%;
}
.filming-section .info-table tr {
  align-items: stretch;
}
.filming-section .info-table th {
  width: 140px;
  padding: 30px 40px;
  font-size: var(--fs-sub);
  color: var(--black); 
  background: var(--skyblue);
}
.filming-section .info-table td {
  display: flex;
  align-items: center;
  width: calc(100% - 140px);
  line-height: 1.5
}
.eval-disease-section {
  background: var(--skyblue);
}
.evalSwiper .swiper-slide figure {
  aspect-ratio: 5 / 3;
}
.evalSwiper .swiper-slide p {
  margin-top: 20px;
  font-size: var(--fs-h5);
  font-weight: var(--fw-700);
  text-align: center;
}

/* 반응형 */
@media (max-width: 1280px) {
  .filming-section .half-wrap .img-box {
    height: 400px;
  }
  .filming-section .half-wrap .img-box img {
    width: auto;
    height: 340px;
  }
}

@media (max-width: 1024px) {
  .videocenter-first-section::before {
    display: none;
  }
  .videocenter-first-section .half-wrap {
    flex-direction: column;
  }
  #ct-section .img-box img {
    width: 480px;
  }
  #ultrasound-section .img-box img {
    width: 230px;
  }
  #xray-section .img-box img {
    width: 300px;
  }
  .video-tit-box {
    gap: 15px;
    margin-bottom: 40px;
  }
  .filming-section .half-wrap .img-box img {
    height: 94%;
  }
  .filming-section .info-table {
    max-width: 100%;
  }
  .filming-section .info-table th {
    width: 20%;
    padding: 25px;
  }
  .filming-section .info-table td {
    width: 80%;
  }
}

@media (max-width: 768px) {
  #ct-section .img-box img {
    width: 445px;
  }
  #ultrasound-section .img-box img {
    width: 200px;
  }
  #xray-section .img-box img {
    width: 260px;
  }
  .video-tit-box {
    gap: 10px;
    margin-bottom: 30px;
  }
  .filming-section .half-wrap .img-box {
    height: 350px;
  }
  .filming-section .info-table th {
    width: 25%;
    padding: 20px;
  }
  .filming-section .info-table td {
    width: 75%;
  }
}

@media (max-width: 480px) {
  #ct-section .img-box img {
    width: 295px;
  }
  #ultrasound-section .img-box img {
    width: 140px;
  }
  #xray-section .img-box img {
    width: 180px;
  }
  .video-tit-box {
    margin-bottom: 20px;
  }
  .filming-section .half-wrap .img-box {
    height: 250px;
  }
  .filming-section .info-table th {
    width: 30%;
    padding: 15px;
  }
  .filming-section .info-table td {
    width: 70%;
    padding: 15px;
  }
  .evalSwiper {
    padding: 0 5%;
  }
}

/* =========================
  건강검진
========================= */
.healthcheckup-page .dropdown.active .dropdown-header {
  border-radius: 100px;
  border-bottom: 1px solid var(--mint);
}
.healthcheckup-page .half-wrap .img-box img {
  object-fit: contain;
}
.healthcheckup-page .feature-swiper .feature-slide01 {
  background: url(/img/main/care-card05.jpg) no-repeat center / cover;
}
.healthcheckup-page .feature-swiper .feature-slide02 {
  background: url(/img/sub/vet-operating-room.jpg) no-repeat center / cover;
}
.healthcheckup-page .feature-swiper .feature-slide03 {
  background: url(/img/sub/doctor-ultrasound-explanation.jpg) no-repeat center / cover;
}
.health-process-section {
  padding: var(--padding160);
}
.health-step-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.health-step-wrap li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 40px 30px;
  border-radius: 20px;
}
.health-step-wrap li:nth-child(odd) {
  border: 1px solid var(--darkskyblue);
}
.health-step-wrap li:nth-child(even) {
  background: var(--skyblue);
}
.health-step-wrap .text-box {
  flex: 1;
}
.step-tit-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.step-tit-box h5 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-700);
}
.health-step-wrap p {
  font-size: var(--fs-body);
  color: var(--c666);
}
.health-step-wrap figure {
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.health-step-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.health-notice {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.health-notice .notice-txt h4 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-700);
}
.health-notice .notice-txt p {
  margin-top: 10px;
  font-size: var(--fs-h5);
  color: var(--c666);
}
.health-table-wrap {
  width: 66%;
  text-align: center;
  overflow-x: auto;
}
.health-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.health-table thead {
  background: var(--mint);
}
.health-table thead th {
  padding: 20px;
  font-size: var(--fs-h5);
  font-weight: var(--fw-700);
  color: var(--white);
}
.health-table tbody {
  background: var(--white);
}
.health-table tbody td {
  padding: 20px;
  border: 1px solid var(--eee);
  font-size: var(--fs-body);
  color: #333;
}
.health-table tbody tr td:first-child {
  font-size: var(--fs-sub);
  font-weight: var(--fw-700);
}
/* 검진항목 */
.checkup-table-box .table-right table th {
  width: 20%;
}
.dog-table .table-left h5::before {
  display: block;
  width: 86px;
  height: 90px;
  margin: 0 auto 20px;
  background: url(/img/sub/healthcheckup/dog.svg) no-repeat center / cover;
  content: '';
}
.cat-table .table-left h5::before {
  display: block;
  width: 70px;
  height: 80px;
  margin: 0 auto 20px;
  background: url(/img/sub/healthcheckup/cat.svg) no-repeat center / cover;
  content: '';
}
.checkup-table-box .horizontal-table:nth-child(2) .table-left {
  background: #1aa3a6;
}
.checkup-table-box .horizontal-table:nth-child(3) .table-left {
  background: #009296;
}
.checkup-table-box .horizontal-table:nth-child(4) .table-left {
  background: #008186;
}
.checkup-table-box .horizontal-table:nth-child(5) .table-left {
  background: #006f73;
}
.checkup-table-box .cat-table:nth-child(1) .table-left {
   background: #7f55b1;
}
.checkup-table-box .cat-table:nth-child(2) .table-left {
   background: #6f4ca0;
}
.checkup-table-box .cat-table:nth-child(3) .table-left {
   background: #60438e;
}
.checkup-table-box .cat-table:nth-child(4) .table-left {
   background: #513a7c;
}
.checkup-table-box .cat-table:nth-child(5) .table-left {
   background: #42316a;
}
.checkup-table-box .cat-table:nth-child(5) .table-left h5::before {
  display: none;
}
.checkup-table-box .cat-table .highlighter::before {
  background: rgb(127 85 177 / 10%);
}
.highlighter {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.highlighter::before {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(171, 219, 219, 0.3);
  z-index: -1;
}
.checkup-table-box .table-right table td ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkup-table-box .table-right table td ul li {
  display: flex;
  gap: 5px;
  line-height: 1.5;
}
.checkup-table-box .table-right table td ul li::before {
  content: '-';
}
.checkup-table-box .note {
  padding: 30px;
  text-align: center;
  font-size: var(--fs-h5);
  color: var(--white);
  background: var(--c666);
  border-radius: 20px;
  line-height: 1.5;
}

/* 반응형 */
@media (max-width: 1280px) {
  .health-step-wrap li {
    flex-direction: column-reverse;
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  .health-step-wrap li {
    padding: 25px;
  }
  .health-step-wrap figure {
    width: 90px;
    height: 90px;
  }
  .health-notice {
    margin-top: 60px;
  }
  .dog-table .table-left h5::before,
  .cat-table .table-left h5::before {
    width: 38px;
    height: 40px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .health-step-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .health-step-wrap li {
    padding: 20px;
  }
  .health-step-wrap li:nth-child(3) {
    border: none;
    background: var(--skyblue);
  }
  .health-step-wrap li:nth-child(4) {
    background: none;
    border: 1px solid var(--darkskyblue);
  }
  .health-step-wrap figure {
    width: 80px;
    height: 80px;
  }
  .step-tit-box {
    gap: 5px;
    margin-bottom: 10px;
  }
  .health-notice {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .health-table-wrap {
    width: 100%;
  }
  .health-table thead th,
  .health-table tbody td {
    padding: 15px;
  }
  .dog-table .table-left h5::before {
    width: 34px;
    height: 35px;
  }
  .cat-table .table-left h5::before {
    width: 32px;
    height: 35px;
  }
  .checkup-table-box .table-right table td ul {
    gap: 5px;
  }
}
@media (max-width: 480px) {
  .healthcheckup-page .half-wrap .img-box {
    height: 200px;
  }
  .health-step-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .health-step-wrap li {
    flex-direction: row-reverse;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
  }
  .health-step-wrap figure {
    width: 50px;
    height: 50px;
  }
  .step-tit-box {
    margin-bottom: 5px;
  }
  .health-table {
    border-radius: 15px 15px 0 0;
  }
  .health-table thead th,
  .health-table tbody td {
    padding: 10px;
  }
  .health-notice {
    gap: 15px;
  }
  .health-notice .notice-txt p {
    margin-top: 5px;
  }
  .checkup-table-box .note {
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 13px;
  }
}

/* =========================
  커뮤니티 리스트 
========================= */
.board-total {
  margin-bottom: 20px;
  color: var(--c666);
}
.total-num {
  color: var(--mint);
  font-weight: var(--fw-700);
}
.board-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 20px;
}
.board-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.thumbnail {
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  overflow: hidden;
}
.no-img {
  background: var(--mint) url(/img/logo.svg) no-repeat center / 80%;
}
.board-item .thumbnail img {
  height: 100%;
  object-fit: cover;
}
.board-item .text-box {
  margin-top: 20px;
}
.board-item .subject {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  font-size: var(--fs-sub);
  font-weight: 500;
  overflow: hidden;
  word-break: break-word;
}
.board-item time {
  color: var(--c666);
}
.no-post {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  font-size: 16px;
  color: var(--c999);
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 80px;
	text-align: center;
}
.pagination a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
}
.pagination a.active {
  background: var(--mint);
  color: var(--white);
}
.pagination .pagination-prev {
  display: none;
}
.notice-btn-box {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 80px;
}
.notice-btn-box a {
  padding: 15px 50px;
  background: var(--black);
  color: var(--white);
  border: none;
  transition: background 0.4s;
  margin: 0;
}
.notice-btn-box a:hover {
  background: var(--mint);
  border: none;
}

/* 반응형 */
@media (max-width: 1024px) {
  .board-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
  .pagination,
  .notice-btn-box {
    margin-top: 60px;
  }
  .notice-btn-box a {
    padding: 15px 40px;
  }
}
@media (max-width: 768px) {
  .board-total {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .board-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
  .board-item .text-box {
    margin-top: 15px;
  }
  .board-item .subject {
    margin-bottom: 5px;
  }
  .pagination,
  .notice-btn-box {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .board-total {
    margin-bottom: 10px;
  }
  .board-list {
    gap: 30px 10px;
  }
  .board-item .subject {
    font-size: 15px;
  }
  .board-item .text-box {
    margin-top: 10px;
  }
  .pagination a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .notice-btn-box a {
    padding: 10px 20px;
  }
}

/* =========================
  커뮤니티 뷰페이지
========================= */
#view .container {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
#view .view-tit {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-bottom: 1px solid var(--ddd);
}
#view .view-tit .detail-tit {
  font-size: var(--fs-h3);
  font-weight: var(--fw-700);
  line-height: 1.2;
  word-break: keep-all;
}
#view .view-tit ol {
  display: flex;
  gap: 40px;
}
#view .view-tit ol li {
  position: relative;
}
#view .view-tit ol li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 80%;
  background: var(--eee);
  content: '';
  transform: translateY(-50%);
}
#view .author {
  font-weight: var(--fw-700);
}
.detail-day,
.views {
  color: var(--c666);
}
#view .view-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 30px;
}
#view .view-txt * {
  max-width: 100%;
  font-family: inherit;
}
#view .view-txt p img {
  max-width: 700px;
}
#view .notice-btn-box {
  justify-content: center;
}
#view .admbtn {
/*  display: none;*/
}
.post-nav {
  width: 100%;
  margin-top: 80px;
}
.post-nav table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--eee);
}
.post-nav table tr {
  border-bottom: 1px solid var(--ddd);
}
.post-nav table tr:hover * {
  color: var(--black);
}
.post-nav th {
  width: 110px;
  padding: 30px;
  font-size: var(--fs-sub);
  font-weight: var(--fw-700);
  text-align: left;
  color: var(--c666);
}
.post-nav td a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 30px 30px 30px 0;
  font-size: var(--fs-sub);
  color: var(--c666);
  min-width: 0;
}
.post-nav td a span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-nav td a i {
  flex-shrink: 0;
}

/* 반응형 */
@media (max-width: 1024px) {
  #view .view-tit {
    padding: 20px;
    gap: 15px;
  }
  #view .view-tit ol {
    gap: 30px;
  }
  #view .view-tit ol li:not(:last-child)::after {
    right: -15px;
  }
  #view .view-txt {
    padding: 40px 20px;
  }
  .post-nav {
    margin-top: 60px;
  }
  .post-nav th {
    width: 90px;
    padding: 25px 20px;
  }
  .post-nav td a {
    padding: 25px 25px 25px 0;
  }
}
@media (max-width: 768px) {
  .post-nav {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  #view .view-tit {
    padding: 15px;
    gap: 10px;
  }
  #view .view-tit ol {
    gap: 20px;
  }
  #view .view-tit ol li:not(:last-child)::after {
    right: -10px;
  }
  #view .view-txt {
    padding: 20px 15px;
  }
  .post-nav th {
    width: 70px;
    padding: 15px;
  }
  .post-nav td a {
    padding: 15px 15px 15px 0;
  }
}

/* =========================
  커뮤니티 글쓰기
========================= */
#writing .sub-inner {
  max-width: 1300px;
}
#writing .container {
  padding: 30px;
  border-top: 1px solid var(--black);
}
#writing tbody {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#writing tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
#writing th {
  font-size: var(--fs-h5);
  font-weight: var(--fw-700);
}
#writing td {
  width: 100%;
}
#writing input[type="text"],
#writing textarea,
#writing .file-upload .upload-name {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--ddd);
  border-radius: 10px;
  font-size: var(--fs-sub);
}
#writing textarea {
  height: 370px;
  resize: none;
}
#writing .file-upload {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
#writing .file-upload .upload-name {
  flex: 1;
}
#writing .sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: var(--fs-sub);
  border: 1px solid var(--black);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}
#writing .sub-btn img {
  width: 16px;
}
#writing .note {
  display: block;
  margin-top: 5px;
  font-size: var(--fs-body);
  color: #d11837;
}
#writing .btn-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
}
#writing .btn {
  padding: 15px 50px;
  max-width: 155px;
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  transition: background 0.4s;
}
#writing .btn:hover {
  background: var(--mint);
}
#writing .cke_sc {
  display: none;
}



/* 반응형 */
@media (max-width: 1024px) {
  #writing .container {
    padding: 20px;
  }
  #writing tbody {
    gap: 25px;
  }
  #writing .btn-list {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  #writing tbody {
    gap: 20px;
  }
  #writing tr {
    gap: 10px;
  }
  #writing input[type="text"],
  #writing textarea,
  #writing .file-upload .upload-name {
    padding: 15px;
  }
  #writing textarea {
    height: 180px;
  }
  #writing .file-upload {
    gap: 15px;
  }
  #writing .sub-btn img {
    width: 14px;
  }
  #writing .btn-list {
    gap: 10px;
    margin-top: 40px;
  }
  #writing .btn {
    padding: 12px 20px;
    max-width: 100px;
  }
}
@media (max-width: 480px) {
  #writing tbody {
    gap: 15px;
  }
  #writing tr {
    gap: 5px;
  }
  #writing input[type="text"],
  #writing textarea,
  #writing .file-upload .upload-name {
    padding: 15px 10px;
  }
  #writing textarea {
    height: 160px;
  }
  #writing .file-upload {
    gap: 10px;
  }
  #writing .sub-btn {
    padding: 10px 15px;
  }
  #writing .sub-btn img {
    width: 12px;
  }
	#writing .btn-list {
    margin-top: 30px;
  }
  #writing .btn {
    padding: 10px 18px;
    max-width: 90px;
  }
}
