.treatment-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1280px) {
  .treatment-section {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .treatment-section {
    gap: 20px;
  }
}
.treatment-section .treatment-summary-box {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
}
.treatment-section .treatment-summary-box .summary-title {
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: white;
  word-break: keep-all;
  text-align: center;
  background: #b8c730;
  border-radius: 1rem 1rem 0 0;
}
@media (max-width: 1280px) {
  .treatment-section .treatment-summary-box .summary-title {
    height: 36px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .treatment-section .treatment-summary-box .summary-title {
    height: 32px;
    font-size: 1rem;
  }
}
.treatment-section .treatment-summary-box .treatment-list {
  width: 100%;
  height: auto;
  padding: 1rem;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  border: 2px solid #b8c730;
  border-radius: 0 0 1rem 1rem;
}
@media (max-width: 1280px) {
  .treatment-section .treatment-summary-box .treatment-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .treatment-section .treatment-summary-box .treatment-list {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .treatment-section .treatment-summary-box .treatment-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.treatment-section .treatment-summary-box .treatment-list > li {
  flex: 0 1 auto;
  font-size: 18px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #3D3D3D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .treatment-section .treatment-summary-box .treatment-list > li {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .treatment-section .treatment-summary-box .treatment-list > li {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
}
.treatment-section .treatment-gallery {
  width: 100%;
  height: auto;
}
.treatment-section .treatment-gallery .gallery-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .treatment-section .treatment-gallery .gallery-list {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .treatment-section .treatment-gallery .gallery-list {
    gap: 4px;
  }
}
.treatment-section .treatment-gallery .gallery-list .cell {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.8;
  overflow: hidden;
  cursor: pointer;
}
.treatment-section .treatment-gallery .gallery-list .cell > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.treatment-section .treatment-gallery .gallery-list .empty {
  width: 100%;
  height: 360px;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #f0f0f0;
}
.treatment-section .treatment-gallery .gallery-list .empty > svg {
  width: 56px;
  height: auto;
  fill: #aaa;
}
.treatment-section .treatment-gallery .gallery-list .empty > span {
  font-size: 24px;
  color: #aaa;
  font-weight: 600;
  word-break: keep-all;
  text-align: center;
}
.treatment-section .image-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.treatment-section .image-background.active {
  visibility: visible;
  opacity: 1;
}
.treatment-section .image-fullsize {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 90%;
  padding: 2px;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  border-radius: 4px;
  z-index: 501;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .treatment-section .image-fullsize {
    height: 95%;
    gap: 1rem;
  }
}
.treatment-section .image-fullsize.active {
  visibility: visible;
  opacity: 1;
}
.treatment-section .image-fullsize .close-fullsize {
  flex: 0 0 auto;
  align-self: flex-end;
  cursor: pointer;
}
.treatment-section .image-fullsize .close-fullsize > svg {
  width: 40px;
  height: auto;
  fill: black;
}
.treatment-section .image-fullsize .fullsize-wrap {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
}
.treatment-section .image-fullsize .fullsize-wrap > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.treatment-section .image-fullsize .close-fullsize-2 {
  flex: 0 0 auto;
  align-self: center;
  width: 100px;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: black;
  word-break: keep-all;
  text-align: center;
  border: 1px solid #aaa;
  border-radius: 5000rem;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .treatment-section .image-fullsize .close-fullsize-2 {
    width: 80px;
    height: 32px;
    font-size: 1rem;
  }
}/*# sourceMappingURL=sub.css.map */