/* media-query */
/* ---------------main-visual START--------------- */
/* main-banner */
.main-visual {
  position: relative;
}
.main-visual::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  inset: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 85;
  transition: all 0.15s;
}
.main-visual .iframe-wrap {
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  overflow: hidden;
}
.main-visual .iframe-wrap .iframe-inner {
  width: 100%;
  height: 100%;
}
.main-visual .iframe-wrap .main-swiper {
  position: absolute;
  inset: 0;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .bg {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 1.5s;
  transform: scale(1.3);
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-top {
  overflow: hidden;
  margin: 0 0 3rem;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-top span {
  letter-spacing: 0.5em;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s ease 0.25s;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-top.animate span {
  opacity: 1;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-center {
  overflow: hidden;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-center h3 {
  font-size: 4.4rem;
  letter-spacing: -0.05em;
  transform: translateY(110%);
  filter: blur(20px);
  transition: transform 1s ease 0.2s, filter 1s ease 0.2s;
  line-height: 1.25;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-center.animate h3 {
  transform: translateY(0%);
  filter: blur(0px);
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-bottom {
  overflow: hidden;
  margin: 2.4rem 0 5rem;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-bottom p {
  font-weight: 300;
  letter-spacing: -0.05em;
  transform: translateY(-110%);
  filter: blur(20px);
  transition: transform 1s ease 0.2s, filter 1s ease 0.2s;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-bottom.animate p {
  transform: translateY(0%);
  filter: blur(0px);
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .swiper-control {
  position: unset;
  transform: unset;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .swiper-control .slider-count {
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 1.3rem;
  background-color: rgba(0, 0, 0, 0.2);
  width: 6.4rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.slide1 .bg {
  background-image: url("../img/main_banner1.png");
}
@media screen and (max-width: 1023px) {
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.slide1 .bg {
    background-position: 75% 50%;
  }
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.slide2 .bg {
  background-image: url("../img/main_banner2.png");
}
@media screen and (max-width: 1023px) {
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.slide2 .bg {
    background-position: 35% 50%;
  }
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.slide3 .bg {
  background-image: url("../img/main_banner3.png");
}
@media screen and (max-width: 1023px) {
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.slide3 .bg {
    background-position: 25% 50%;
  }
}
.main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .bg {
  transform: scale(1);
}
.main-visual .iframe-wrap .scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0);
  bottom: 7.5%;
  z-index: 10;
  width: 9rem;
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  opacity: 0;
  transition: all 1s ease 1s;
  z-index: 20;
}
.main-visual .iframe-wrap .scroll-down .circle-text {
  animation: rotate 6s infinite linear;
}
.main-visual .iframe-wrap .scroll-down .arrow-down {
  position: absolute;
}
.main-visual .iframe-wrap .scroll-down.animate {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

@media (max-width: 1399px) {
  .main-visual::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text {
    width: calc(100% - 60px);
    top: 49%;
  }
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-top {
    margin: 0 0 2.5rem;
  }
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-top span {
    white-space: nowrap;
    font-size: 7px;
  }
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-center h3 {
    font-size: 3.6rem;
  }
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-bottom {
    margin: 2.4rem 0 4rem;
  }
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .slide-text-bottom p {
    font-size: 13.5px;
  }
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide .slide-text .swiper-control .slider-count {
    font-size: 10.5px;
    width: auto;
    padding: 0 10px;
    letter-spacing: -0.075em;
  }
  .main-visual .iframe-wrap .main-swiper .swiper-wrapper .swiper-slide.slide01 .bg {
    background-position: 80% 50%;
  }
  .main-visual .iframe-wrap .scroll-down {
    bottom: 5%;
    transition-delay: 0.75s;
    width: 8rem;
    height: 8rem;
  }
  .main-visual .iframe-wrap .scroll-down .arrow-down {
    transform: scale(0.7);
  }
}
/* ---------------main-visual END--------------- */
/* ---------------subject-section START--------------- */
#subject-section .maxwidth {
  width: 95%;
}
#subject-section .maxwidth .subject-wrap {
  display: flex;
  gap: 1.6rem;
}
#subject-section .maxwidth .subject-wrap .subject-item {
  border-radius: 2rem;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(25% - 1.2rem);
  height: 510px;
}
#subject-section .maxwidth .subject-wrap .subject-item:hover {
  width: calc(35% - 1.2rem);
}
#subject-section .maxwidth .subject-wrap .subject-item:hover a .bg {
  transform: scale(1.1) translateZ(0);
}
#subject-section .maxwidth .subject-wrap .subject-item:hover a .bg::after {
  opacity: 0;
}
#subject-section .maxwidth .subject-wrap .subject-item:hover a .bg::before {
  opacity: 1;
}
#subject-section .maxwidth .subject-wrap .subject-item:hover a .inner .list-btn {
  opacity: 0;
  pointer-events: none;
}
#subject-section .maxwidth .subject-wrap .subject-item:hover a .inner .hover-clinic-list li {
  transform: rotateX(0deg);
  opacity: 1;
  filter: blur(0px);
}
#subject-section .maxwidth .subject-wrap .subject-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#subject-section .maxwidth .subject-wrap .subject-item a .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(1) translateZ(0);
  transition: transform 1s ease-in-out 0.1s;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  background-size: auto;
}
#subject-section .maxwidth .subject-wrap .subject-item a .bg.bg1 {
  background-image: url("../img/clinic_img1.png");
}
#subject-section .maxwidth .subject-wrap .subject-item a .bg.bg2 {
  background-image: url("../img/clinic_img2.png");
}
#subject-section .maxwidth .subject-wrap .subject-item a .bg.bg3 {
  background-image: url("../img/clinic_img3.png");
}
#subject-section .maxwidth .subject-wrap .subject-item a .bg.bg4 {
  background-image: url("../img/clinic_img4.png");
}
#subject-section .maxwidth .subject-wrap .subject-item a .bg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .bg::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner {
  position: relative;
  width: calc(100% - 8.4rem);
  height: calc(100% - 8.4rem);
  color: #fff;
  padding: 4.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .title-box > span {
  font-weight: 300;
  font-size: 1.5rem;
  text-transform: uppercase;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .title-box h3 {
  font-weight: 800;
  font-size: 2.8rem;
  padding: 0.5rem 0 0;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .list-btn {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-weight: 700;
  font-size: 1.8rem;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  line-height: 3rem;
  opacity: 1;
  transition: opacity 0.35s;
  pointer-events: auto;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 4.2rem;
  bottom: 4.2rem;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li {
  font-size: 1.5rem;
  transform: rotateX(90deg);
  transform-origin: bottom center;
  opacity: 0;
  filter: blur(5px);
  transition: all 0.3s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li:nth-child(1) {
  transition-delay: 0.41s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li:nth-child(2) {
  transition-delay: 0.38s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li:nth-child(3) {
  transition-delay: 0.35s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li:nth-child(4) {
  transition-delay: 0.32s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li:nth-child(5) {
  transition-delay: 0.29s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li:nth-child(6) {
  transition-delay: 0.26s;
}
#subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li:nth-child(7) {
  transition-delay: 0.23s;
}

@media screen and (max-width: 1279px) {
  #subject-section .maxwidth .subject-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #subject-section .maxwidth .subject-wrap .subject-item {
    width: 100%;
    height: 400px;
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover {
    width: 100%;
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .bg {
    background-size: cover;
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  #subject-section .maxwidth .subject-wrap {
    grid-template-columns: 1fr;
  }
  #subject-section .maxwidth .subject-wrap .subject-item {
    height: 250px;
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover {
    width: 100%;
    height: 350px;
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .bg {
    background-position: 50% 25%;
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .inner {
    padding: 3.5rem;
    width: calc(100% - 7rem);
    height: calc(100% - 7rem);
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list {
    gap: 3px;
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  #subject-section {
    padding: 50px 0;
  }
  #subject-section .maxwidth .subject-wrap .subject-item {
    height: 150px;
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover {
    height: 150px;
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover a .bg {
    transform: scale(1) translateZ(0);
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover a .bg::after {
    opacity: 1;
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover a .bg::before {
    opacity: 0;
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover a .inner .list-btn {
    opacity: 1;
  }
  #subject-section .maxwidth .subject-wrap .subject-item:hover a .inner .hover-clinic-list li {
    opacity: 0;
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .bg::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.8) 100%);
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .inner {
    padding: 2.5rem;
    width: calc(100% - 5rem);
    height: calc(100% - 5rem);
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list {
    gap: 2px;
  }
  #subject-section .maxwidth .subject-wrap .subject-item a .inner .hover-clinic-list li {
    font-size: 12px;
  }
}
/* ---------------subject-section END--------------- */
/* ---------------pain-section START--------------- */
@media screen and (min-width: 1921px) {
  #wrapper .pain-wrap.pc .main-page .pain-banner {
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  #wrapper .sub-page .sub > img:first-child {
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap {
    max-width: unset;
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .virtual {
    width: 45%;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt {
    width: 55%;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt h2 {
    font-size: 2.6041666667vw;
    font-weight: 800;
    color: #133a85;
    padding-bottom: 0.5208333333vw;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt p {
    font-size: 0.9375vw;
    padding-bottom: 1.3541666667vw;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt p b {
    color: #133a85;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt ul {
    padding-left: 0.5208333333vw;
    display: flex;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 0 -0.4166666667vw;
    background-color: #133a85;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 0.9375vw;
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button {
    font-size: 0.9375vw;
    border-radius: 1.5625vw;
    gap: 4.6875vw;
    margin-top: 1.3020833333vw;
    width: 14.3229166667vw;
    height: 3.2291666667vw;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button img {
    display: block;
    margin-left: 0.5208333333vw;
    width: 1.1458333333vw;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap.reverse {
    flex-direction: row-reverse;
  }
  #wrapper .pain-wrap.pc .sub-page .sub .box-wrap.reverse .txt {
    padding-left: 15%;
  }
}
/* ---------------pain-section START--------------- */
.pain-wrap.mo {
  display: none;
}

.pain-wrap.pc {
  position: relative;
  overflow: hidden;
  margin: 5.5rem 0 0;
}
.pain-wrap.pc.animate .main-page .pain-init {
  animation: pain_init 2s cubic-bezier(0.76, 0, 0.24, 1) 0s forwards;
}
.pain-wrap.pc.animate .main-page .main-pointer {
  animation: spot 1.2s ease 2s infinite alternate both;
}
.pain-wrap.pc .main-page {
  position: relative;
  transition: all 1.5s ease 0s;
}
.pain-wrap.pc .main-page .pain-banner {
  transform: scale(3);
  filter: blur(50px);
  transition: all 1s cubic-bezier(0.425, 0.05, 0, 1);
}
.pain-wrap.pc .main-page .main-pointer {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  width: 3.1770833333vw;
}
.pain-wrap.pc .main-page .main-pointer.upper01 {
  top: 24.5%;
  left: 20.4%;
}
.pain-wrap.pc .main-page .main-pointer.upper02 {
  top: 35.7%;
  left: 26.6%;
}
.pain-wrap.pc .main-page .main-pointer.upper03 {
  top: 63%;
  left: 27.5%;
}
.pain-wrap.pc .main-page .main-pointer.upper04 {
  bottom: 20.3%;
  left: 17.4%;
}
.pain-wrap.pc .main-page .main-pointer.upper05 {
  bottom: 5.9%;
  left: 27%;
}
.pain-wrap.pc .main-page .main-pointer.lower01 {
  top: 5.5%;
  right: 13.4%;
}
.pain-wrap.pc .main-page .main-pointer.lower02 {
  top: 47%;
  right: 12.8%;
}
.pain-wrap.pc .main-page .main-pointer.lower03 {
  bottom: 12.5%;
  right: 13.1%;
}
.pain-wrap.pc .main-page .title-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 52.5%;
  text-align: center;
}
.pain-wrap.pc .main-page .title-txt .symbol {
  margin: 0 auto;
  width: 2.34375vw;
}
.pain-wrap.pc .main-page .title-txt .slogan {
  font-size: 0.5208333333vw;
  margin: 1.8229166667vw 0;
}
.pain-wrap.pc .main-page .title-txt .cmt1 {
  padding-bottom: 1.1979166667vw;
  font-size: 0.78125vw;
}
.pain-wrap.pc .main-page .title-txt .cmt2 {
  font-size: 2.0833333333vw;
  padding-bottom: 1.3020833333vw;
}
.pain-wrap.pc .main-page .title-txt .cmt3 {
  font-size: 0.9375vw;
}
.button3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  line-height: 1.25;
  letter-spacing: -0.05em;
  flex-direction: column;
  font-size: 1.5625vw;
  color: #fff;
  margin: 2.0833333333vw auto 0;
  width: 23.3333333333vw;
  height: 8.5416666667vw;
  border-radius: 5.2083333333vw;
  background: linear-gradient(to bottom, #3a69c3, #133a85);
}
.button3 b {
  font-weight: 900;
  font-size: 2.6041666667vw;
}

.pain-wrap.pc .main-page .title-txt.hide {
  filter: blur(20px);
  opacity: 0;
}
.pain-wrap.pc .sub-page .sub {
  opacity: 0;
  filter: blur(30px);
  transform: scale(3) translate(32%, 28%) rotateY(90deg);
  transition: all 1.5s ease 0.75s;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.pain-wrap.pc .sub-page .sub > img:first-child {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pain-wrap.pc .sub-page .sub .sub-pointer {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  width: 5.15625vw;
  animation: spot 1.2s ease 0s infinite alternate both;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.neck {
  top: 32%;
  left: 24.5%;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.shoulder {
  top: 17.5%;
  left: 35%;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.elbow {
  top: 39.5%;
  left: 35.5%;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.wrist {
  top: 52%;
  left: 32%;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.back {
  top: 46%;
  left: 21.5%;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.coxa {
  top: 15%;
  right: 24.5%;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.knee {
  top: 45%;
  right: 21%;
}
.pain-wrap.pc .sub-page .sub .sub-pointer.ankle {
  bottom: 22.5%;
  right: 22.5%;
}
.pain-wrap.pc .sub-page .sub .box-wrap {
  max-width: 1200px;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.pain-wrap.pc .sub-page .sub .box-wrap .virtual {
  width: 45%;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt {
  width: 55%;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #133a85;
  padding-bottom: 2.5rem;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt p {
  font-size: 1.8rem;
  padding-bottom: 4rem;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt p b {
  color: #133a85;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt ul {
  padding-left: 1rem;
  display: flex;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 -0.8rem;
  background-color: #133a85;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  width: 16rem;
  height: 16rem;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button {
  background-color: #fff;
  font-size: 1.8rem;
  border-radius: 30px;
  gap: 9rem;
  margin-top: 3.5rem;
  width: 27.5rem;
  height: 6.2rem;
  cursor: pointer;
  margin-top: 3.5rem;
  position: relative;
  display: flex;
  width: 27.5rem;
  height: 6.2rem;
  border-radius: 30px;
  border: 1px solid #eee;
  justify-content: center;
  gap: 5.3rem;
  align-items: center;
  overflow: hidden;
  transition: all 0.35s;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button img {
  display: block;
  margin-left: 1rem;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button::after {
  background-color: #133a85;
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button:hover {
    background-color: #133a85;
    color: #fff;
  }
  .pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button:hover img {
    filter: brightness(0) invert(1);
  }
}
.pain-wrap.pc .sub-page .sub .box-wrap.reverse {
  flex-direction: row-reverse;
}
.pain-wrap.pc .sub-page .sub.show {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1.01) translate(0%, 0%) rotateY(0deg);
  z-index: 90;
}

@media (max-width: 1023px) {
  .pain-wrap.pc {
    display: none;
  }
  .pain-wrap.mo {
    position: relative;
    overflow: hidden;
    padding: 75px 0 10px;
    display: block;
    background-color: #f8f8f8;
  }
  .pain-wrap.mo .main-page .title-txt {
    padding: 0 10px;
    text-align: center;
  }
  .pain-wrap.mo .main-page .title-txt .symbol {
    margin: 0 auto;
  }
  .pain-wrap.mo .main-page .title-txt .button3 {
    font-size: 2.4rem;
    margin: 4rem auto 3.5rem;
    width: 70%;
    height: 12rem;
    border-radius: 100px;
    max-width: 300px;
  }
  .pain-wrap.mo .main-page .title-txt .button3 b {
    font-size: 4rem;
  }
  .pain-wrap.mo .main-page .body-swiper {
    overflow: hidden;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner {
    position: relative;
    z-index: 5;
    width: 387px;
    margin: 0 auto;
    transition: all 2s cubic-bezier(0.76, 0, 0.24, 1) 0s;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .mo-body {
    display: block;
    margin: 0 auto;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .main-pointer {
    width: 10vw;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    max-width: 55px;
    animation: spot 1.2s ease 0s infinite alternate both;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper01 {
    top: 16%;
    right: 25.5%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper02 {
    top: 29%;
    right: -1%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper03 {
    top: 53%;
    right: 0%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper04 {
    bottom: 23%;
    left: 45%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper05 {
    bottom: 18%;
    right: 2.5%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .lower01 {
    top: 6%;
    right: 40%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .lower02 {
    top: 50%;
    right: 38%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .lower03 {
    bottom: 7%;
    right: 38%;
  }
  .pain-wrap.mo .main-page .body-swiper .body-swiper-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 4rem 0;
    position: relative;
    z-index: 90;
  }
  .pain-wrap.mo .main-page .body-swiper .body-swiper-navigation .body-swiper-nav {
    display: flex;
    justify-content: center;
    border-radius: 100px;
    width: 85px;
    height: 35px;
    line-height: 33.5px;
    background-color: #fff;
    border: 1px solid #133a85;
    color: #133a85;
    box-sizing: border-box;
    transition: 0.3s ease;
    font-size: 18px;
  }
  .pain-wrap.mo .main-page .body-swiper .body-swiper-navigation .body-swiper-nav.active {
    background-color: #133a85;
    color: #fff;
    font-weight: 800;
  }
  .pain-wrap.mo .sub-page .sub {
    background-color: #f8f8f8;
    position: absolute;
    padding: 0 15px;
    inset: 0;
    z-index: 90;
    width: calc(100% - 30px);
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    transition: transform 1.1s, filter 1.1s, opacity 1.1s;
    transform-origin: right top;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
    filter: blur(3px);
    transform: rotateY(105deg) skewX(-10deg) skewY(-15deg);
  }
  .pain-wrap.mo .sub-page .sub::after {
    content: "";
    position: absolute;
    background: radial-gradient(120% 120% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.65) 100%);
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out 0s;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 3rem;
    width: calc(100% + 20px);
  }
  .pain-wrap.mo .sub-page .sub.show {
    transform: rotateY(0deg) skewX(0) skewY(0deg);
    filter: blur(0px);
    opacity: 1;
  }
  .pain-wrap.mo .sub-page .sub.show::after {
    opacity: 0;
    transition-delay: 0.5s;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt {
    margin-top: 4rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #133a85;
    padding-bottom: 2.5rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt p {
    font-size: 1.8rem;
    padding-bottom: 5.5rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt p b {
    color: #133a85;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt ul {
    display: grid;
    grid-template-columns: repeat(2, 13.7rem);
    padding-left: 1.3rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: -1.3rem;
    background-color: #133a85;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    width: 16rem;
    height: 16rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button {
    background-color: #fff;
    font-size: 1.8rem;
    border-radius: 30px;
    gap: 9rem;
    width: 27.5rem;
    height: 6.2rem;
    cursor: pointer;
    margin: 5.5rem 0 4rem;
    position: relative;
    display: flex;
    width: 27.5rem;
    height: 6.2rem;
    border-radius: 30px;
    border: 1px solid #eee;
    justify-content: center;
    gap: 5.3rem;
    align-items: center;
    overflow: hidden;
    transition: all 0.35s;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button img {
    display: block;
    margin-left: 1rem;
    transform: scale(0.8);
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button::after {
    display: none;
    background-color: #133a85;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button:hover {
    color: #282828;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button:hover img {
    filter: none;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure {
    width: 470px;
    margin: 0 auto;
    position: relative;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-body {
    margin: 0 auto;
    display: block;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer {
    cursor: pointer;
    width: 60px;
    position: absolute;
    animation: spot 1.2s ease 0s infinite alternate both;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.neck {
    top: 30%;
    left: 52%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.shoulder {
    top: 18%;
    right: 5%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.elbow {
    top: 40%;
    right: 0%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.wrist {
    top: 55%;
    right: 1.5%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.back {
    top: 45%;
    left: 55%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.coxa {
    top: 15%;
    right: 45.5%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.knee {
    top: 45%;
    right: 45%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer.ankle {
    bottom: 10%;
    right: 29%;
  }
}
@media screen and (max-width: 767px) {
  .pain-wrap.mo {
    padding: 50px 0 0px;
  }
}
@media (max-width: 500px) {
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner {
    width: 85%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure {
    width: 80%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure .sub-pointer {
    width: 40px;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt p br {
    display: none;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt ul li {
    width: 48vw;
    height: 48vw;
    font-size: 2rem;
  }
}
/* ---------------pain-section END--------------- */
/* ---------------doctor-section START--------------- */
#doctor-section .maxwidth .profile-wrap {
  display: flex;
  position: relative;
}
#doctor-section .maxwidth .profile-wrap .profile {
  padding: 0 0 6rem 3.5%;
}
#doctor-section .maxwidth .profile-wrap .profile .title .sub-title {
  font-size: 2.2rem;
}
#doctor-section .maxwidth .profile-wrap .profile .title h3 {
  font-size: 4.6rem;
  padding: 1rem 0 2.5rem;
}
#doctor-section .maxwidth .profile-wrap .profile .career-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
#doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list {
  display: flex;
  gap: 3rem;
}
#doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list .list-name {
  font-size: 2.2rem;
  padding: 0.5rem 0 0;
}
#doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list .list li {
  line-height: 1.82;
  font-size: 2.2rem;
}
#doctor-section .maxwidth .profile-wrap .doctor {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 1279px) {
  #doctor-section .maxwidth {
    width: 95%;
  }
  #doctor-section .maxwidth .profile-wrap .profile {
    padding: 0 0 6rem 0%;
  }
  #doctor-section .maxwidth .profile-wrap .profile .title .sub-title {
    font-size: 2rem;
  }
  #doctor-section .maxwidth .profile-wrap .profile .title h3 {
    font-size: 4rem;
  }
  #doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list .list-name {
    font-size: 2rem;
  }
  #doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list .list li {
    font-size: 2rem;
  }
  #doctor-section .maxwidth .profile-wrap .doctor img {
    width: 425px;
  }
}
@media screen and (max-width: 991px) {
  #doctor-section .maxwidth .profile-wrap {
    flex-direction: column-reverse;
    align-items: center;
    gap: 5rem;
  }
  #doctor-section .maxwidth .profile-wrap .profile {
    padding: 0 0 2rem;
  }
  #doctor-section .maxwidth .profile-wrap .doctor {
    position: unset;
  }
  #doctor-section .maxwidth .profile-wrap .doctor img {
    width: 400px;
  }
}
@media screen and (max-width: 767px) {
  #doctor-section .maxwidth {
    width: 90%;
  }
  #doctor-section .maxwidth .profile-wrap .profile .title .sub-title {
    font-size: 18px;
  }
  #doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  #doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list .list-name {
    font-size: 18px;
  }
  #doctor-section .maxwidth .profile-wrap .doctor img {
    width: 360px;
  }
}
@media screen and (max-width: 450px) {
  #doctor-section .maxwidth {
    width: 85%;
  }
  #doctor-section .maxwidth .profile-wrap .profile .title .sub-title {
    font-size: 17px;
  }
  #doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list .list-name {
    font-size: 17px;
  }
  #doctor-section .maxwidth .profile-wrap .profile .career-list-wrap .career-list .list li {
    font-size: 14px;
  }
  #doctor-section .maxwidth .profile-wrap .doctor {
    display: flex;
    justify-content: center;
  }
  #doctor-section .maxwidth .profile-wrap .doctor img {
    width: 95%;
  }
}
/* ---------------doctor-section END--------------- */
/* ---------------merit-section END--------------- */
.merit-section {
  max-width: 1920px;
  margin: 0 auto;
}
.merit-section .merit-wrap {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: calc((100% - 1400px) / 2);
}
.merit-section .merit-wrap .section-heading {
  width: 38.5%;
  text-align: left;
  padding: 5% 0 0;
}
.merit-section .merit-wrap .section-heading .section-desc {
  margin: 3rem 0 3rem;
}
.merit-section .merit-wrap .section-heading .swiper-pagination {
  position: unset;
  width: auto;
  text-align: left;
  display: flex;
  gap: 20px;
}
.merit-section .merit-wrap .section-heading .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #f5f5f5;
  width: 100px;
  border-radius: 4px;
  margin: 0;
}
.merit-section .merit-wrap .section-heading .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #133a85;
}
.merit-section .merit-wrap .merit-swiper {
  width: 61.5%;
  overflow: hidden;
}
.merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box {
  position: relative;
  margin: -24px 0 0;
  padding: 0 18px;
}
.merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box .number {
  border-radius: 10px;
  width: 48px;
  height: 48px;
  background-color: #133a85;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-family: "SUIT";
  font-size: 15px;
  color: #fff;
}
.merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box h3 {
  padding: 1.5rem 0 1.5rem;
  font-size: 28px;
}
.merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box h3 b {
  font-weight: 800;
}
.merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box p {
  font-size: 18px;
}

@media (max-width: 1500px) {
  .merit-section .merit-wrap {
    padding: 0 0 0 5%;
  }
  .merit-section .merit-wrap .section-heading {
    margin: 0 5% 0 0;
  }
}
@media screen and (max-width: 1279px) {
  .merit-section .merit-wrap {
    flex-direction: column;
    padding: 0 0 7.5rem;
    gap: 2.5rem;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  .merit-section .merit-wrap .section-heading {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .merit-section .merit-wrap .section-heading .swiper-pagination {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  .merit-section .merit-wrap .merit-swiper {
    width: 100%;
  }
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .figure img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 991px) {
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box p {
    text-wrap: balance;
  }
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box p br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .merit-section .merit-wrap .section-heading .swiper-pagination {
    gap: 15px;
  }
  .merit-section .merit-wrap .section-heading .swiper-pagination .swiper-pagination-bullet {
    width: 90px;
    height: 6px;
  }
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box h3 {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 450px) {
  .merit-section .merit-wrap {
    padding: 0 0 5rem 0;
  }
  .merit-section .merit-wrap .section-heading .section-title {
    font-size: 26px;
  }
  .merit-section .merit-wrap .section-heading .section-desc {
    margin: 2rem 0 2.5rem;
  }
  .merit-section .merit-wrap .section-heading .swiper-pagination {
    gap: 10px;
  }
  .merit-section .merit-wrap .section-heading .swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 5px;
  }
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box {
    padding: 0 15px;
    margin: -20px 0 0;
  }
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box .number {
    width: 40px;
    height: 40px;
    font-size: 13.5px;
  }
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box h3 {
    font-size: 22px;
  }
  .merit-section .merit-wrap .merit-swiper .swiper-wrapper .swiper-slide .text-box p {
    font-size: 14.4px;
  }
}
/* ---------------merit-section END--------------- */
/* ---------------clinic-section START--------------- */
#clinic-section {
  margin: 5rem 0 0;
}
#clinic-section .clinic-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto -3.45rem;
}
#clinic-section .clinic {
  display: none;
}
#clinic-section .clinic.active {
  display: block;
}
#clinic-section .clinic .maxwidth2 .box-wrap {
  display: flex;
  align-items: center;
  gap: 5%;
  padding: 7.5rem 0 6.5rem;
}
#clinic-section .clinic .maxwidth2 .box-wrap .text-box {
  width: 50%;
  padding: 0 0 0 5%;
}
#clinic-section .clinic .maxwidth2 .box-wrap .text-box h3 {
  font-size: 4rem;
}
#clinic-section .clinic .maxwidth2 .box-wrap .text-box p {
  padding: 3rem 0 0;
  text-wrap: balance;
}
#clinic-section .clinic .maxwidth2 .box-wrap .figure {
  width: 50%;
}
#clinic-section .clinic .maxwidth .info-box {
  display: flex;
  gap: 10%;
  margin: -6.8rem 0 0;
}
#clinic-section .clinic .maxwidth .info-box .info {
  width: 50%;
}
#clinic-section .clinic .maxwidth .info-box .info .title {
  background-color: #fff;
  display: flex;
  align-items: center;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
}
#clinic-section .clinic .maxwidth .info-box .info .title .number {
  color: #fff;
  background-color: #133a85;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-weight: 800;
  font-size: 2.1rem;
  flex-shrink: 0;
  width: 6.8rem;
  height: 6.8rem;
  margin: 0 2.3rem 0 0;
  border-top-left-radius: 2rem;
}
#clinic-section .clinic .maxwidth .info-box .info .title h4 {
  color: #133a85;
  font-size: 2rem;
}
#clinic-section .clinic .maxwidth .info-box .info .title h4 b {
  font-weight: 700;
}
#clinic-section .clinic .maxwidth .info-box .info .info-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 2rem 0 0 9rem;
}
#clinic-section .clinic .maxwidth .info-box .info .info-list li {
  line-height: 1.35;
}
#clinic-section .clinic .maxwidth .treatment-box {
  background-color: #f5f5f5;
  border-radius: 11.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.5rem;
  padding: 4.5rem 0;
  margin: 5.6rem 0 0;
}
#clinic-section .clinic .maxwidth .treatment-box .text-box h3 {
  font-weight: 800;
  font-size: 2.5rem;
  color: #34a8df;
}
#clinic-section .clinic .maxwidth .treatment-box .text-box p {
  padding: 2rem 0 0;
}
#clinic-section .clinic .maxwidth .treatment-box .step-wrap {
  display: flex;
  align-items: center;
  gap: 6rem;
}
#clinic-section .clinic .maxwidth .treatment-box .step-wrap .step {
  text-align: center;
}
#clinic-section .clinic .maxwidth .treatment-box .step-wrap .step .icon {
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#clinic-section .clinic .maxwidth .treatment-box .step-wrap .step h4 {
  font-size: 2rem;
  font-weight: 800;
  padding: 2rem 0 1rem;
}
#clinic-section .clinic .maxwidth .treatment-box .step-wrap .step > span {
  font-size: 1.5rem;
}
#clinic-section .clinic .maxwidth .treatment-box .step-wrap .plus {
  font-family: "SUIT";
  font-weight: 900;
  font-size: 3.1rem;
  color: #133a85;
}

@media screen and (max-width: 1279px) {
  #clinic-section .clinic .maxwidth2 .box-wrap {
    gap: 1.5%;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .text-box {
    padding: 0;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .text-box h3 {
    text-wrap: balance;
    font-size: 32px;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .text-box h3 br {
    display: none;
  }
  #clinic-section .clinic .maxwidth .info-box {
    gap: 5%;
  }
  #clinic-section .clinic .maxwidth .treatment-box {
    gap: 2rem;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  #clinic-section {
    margin: 1rem 0 0;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap {
    padding: 10rem 0 7.5rem;
    flex-direction: column;
    gap: 5rem;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .text-box {
    width: 100%;
    text-align: center;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .figure {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .figure img {
    max-width: 500px;
  }
  #clinic-section .clinic .maxwidth .treatment-box {
    border-radius: 7rem;
    flex-direction: column;
    gap: 3.5rem;
  }
  #clinic-section .clinic .maxwidth .treatment-box .text-box {
    text-align: center;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap .step > span {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  #clinic-section .clinic-tabs {
    margin: 0 auto -2.75rem;
  }
  #clinic-section .clinic-tabs li button {
    width: 20rem;
    height: 5.5rem;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap {
    padding: 8.5rem 0 0;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .text-box h3 {
    font-size: 30px;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .figure img {
    max-width: 100%;
    width: 100%;
  }
  #clinic-section .clinic .maxwidth .info-box {
    margin: 2.5rem 0 0;
    flex-direction: column;
    gap: 4rem;
  }
  #clinic-section .clinic .maxwidth .info-box .info {
    width: 100%;
  }
  #clinic-section .clinic .maxwidth .info-box .info .title {
    background-color: #fafafa;
  }
  #clinic-section .clinic .maxwidth .info-box .info .title .number {
    width: 6rem;
    height: 6rem;
    font-size: 1.8rem;
  }
  #clinic-section .clinic .maxwidth .info-box .info .info-list {
    padding: 3rem 0 0 8rem;
  }
  #clinic-section .clinic .maxwidth .info-box .info .info-list li {
    line-height: 1.5;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap {
    gap: 1rem;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap .step .icon {
    height: 46.5px;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap .step .icon img {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 450px) {
  #clinic-section .clinic-tabs {
    margin: 0 auto -2.5rem;
  }
  #clinic-section .clinic-tabs li button {
    width: 18rem;
    height: 5rem;
  }
  #clinic-section .clinic .maxwidth2 .box-wrap .text-box h3 {
    font-size: 26px;
  }
  #clinic-section .clinic .maxwidth .info-box .info .info-list {
    padding: 3rem 0 0 7rem;
  }
  #clinic-section .clinic .maxwidth .treatment-box {
    border-radius: 5rem;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap {
    gap: 0rem;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap .step .icon {
    height: 41px;
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap .step .icon img {
    transform: scale(0.7);
  }
  #clinic-section .clinic .maxwidth .treatment-box .step-wrap .plus {
    font-size: 2.4rem;
  }
}
/* ---------------clinic-section END--------------- */
/* ---------------nonsurgery-section START--------------- */
#nonsurgery-section .nonsurgery-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 0 -3.45rem 0;
}
#nonsurgery-section .nonsurgery-swiper {
  overflow: hidden;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  gap: 5%;
  align-items: center;
  justify-content: space-between;
  height: 760px;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt {
  width: 40%;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt h3 {
  font-size: 4rem;
  padding: 0 0 3rem 0;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p b, #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p strong {
  color: #133a85;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list {
  display: flex;
  margin: 3rem 0 0;
  gap: 1.6rem;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li {
  flex: 1;
  max-width: 133px;
  padding: 2.6rem 0px 3.1rem;
  flex: 1;
  text-align: center;
  border-radius: 2rem;
  box-sizing: border-box;
  border: 1px solid #f1f1f1;
  background-color: #fff;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li .icon {
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li span {
  font-size: 1.5rem;
  color: #282828;
  margin: 1.8rem 0 0;
  display: inline-block;
  white-space: nowrap;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list {
  margin: 3.5rem 0 0;
  display: flex;
  gap: 2rem;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li {
  width: 171px;
  padding: 1.2rem 0 0;
  border-radius: 2rem;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  background-color: #fff;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .type {
  font-weight: 900;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #133a85;
  width: 85%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 0.75rem 0;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li {
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li:first-child {
  height: 6.5rem;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li:first-child::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #f1f1f1;
  height: 2px;
  width: 90%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li:last-child {
  height: 10rem;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list {
  display: flex;
  margin: 3.5rem 0 0;
  align-items: center;
  gap: 0.7rem;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li {
  text-align: center;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .icon {
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .text {
  font-size: 1.5rem;
  text-align: center;
  padding: 2rem 0 0;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .circle-arrow {
  display: inline-block;
  background-color: #133a85;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li.content {
  background-color: #fff;
  border-radius: 2rem;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
  height: 180px;
  width: 162px;
  padding: 2rem 0 2rem;
  flex-direction: column;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure {
  width: 60%;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure img {
  opacity: 0;
  transition: opacity 0.8s 0.2s;
}
#nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide.animate .nonsurgery-clinic .figure img {
  opacity: 1;
}

@media screen and (max-width: 1279px) {
  #nonsurgery-section .nonsurgery-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 222px));
    row-gap: 0.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  #nonsurgery-section .nonsurgery-tabs li:nth-child(4) {
    transform: translateX(calc(50% + 0.75rem));
  }
  #nonsurgery-section .nonsurgery-tabs li:nth-child(5) {
    transform: translateX(calc(50% + 0.75rem));
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt {
    width: 45%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p {
    text-wrap: balance;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p br {
    display: none;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list {
    margin: 4rem 0 0;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure {
    width: 55%;
  }
}
@media screen and (max-width: 1023px) {
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic {
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    height: auto;
    padding: 10rem 0 5rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt {
    width: 100%;
    text-align: center;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p br {
    display: block;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list {
    justify-content: center;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li {
    padding: 2.6rem 20px 3.1rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list {
    justify-content: center;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list {
    justify-content: center;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure img {
    max-height: 450px;
  }
}
@media screen and (max-width: 767px) {
  #nonsurgery-section .nonsurgery-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 185px));
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 0.5rem;
    margin: 0 0 -2.75rem 0;
  }
  #nonsurgery-section .nonsurgery-tabs li button {
    width: 100%;
    height: 5.5rem;
  }
  #nonsurgery-section .nonsurgery-tabs li button:nth-child(4) {
    transform: translateX(calc(50% + 0.5rem));
  }
  #nonsurgery-section .nonsurgery-tabs li button:nth-child(5) {
    transform: translateX(calc(50% + 0.5rem));
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic {
    gap: 5.5rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt {
    width: 100%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p {
    font-size: 16px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list {
    gap: 6px;
    width: 100%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li {
    padding: 2rem 0px;
    max-width: unset;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li .icon {
    height: 38px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li .icon img {
    transform: scale(0.7);
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li > span {
    white-space: unset;
    margin: 1.3rem 0 0;
    font-size: 13.5px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list {
    gap: 8px;
    justify-content: center;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li {
    width: unset;
    padding: 12.5px 10px 10px 10px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .type {
    width: 100%;
    font-size: 14px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li {
    font-size: 14px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li:first-child {
    height: 8.5rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li:first-child::after {
    height: 1px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li:last-child {
    height: 13rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list {
    margin: 5rem 0 0;
    gap: 1rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .icon {
    height: 46px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .icon img {
    transform: scale(0.8);
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .text {
    font-size: 14px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li.content {
    height: 160px;
    width: 162px;
    padding: 2rem 0 2rem;
    flex-direction: column;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure img {
    max-width: 100%;
    transition-delay: 0.2s;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic.nonsurgery-clinic01 .figure img {
    width: 85%;
  }
}
@media screen and (max-width: 450px) {
  #nonsurgery-section .nonsurgery-tabs {
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    row-gap: 0.3rem;
    margin: 0 0 -2.25rem 0;
  }
  #nonsurgery-section .nonsurgery-tabs li button {
    height: 4.5rem;
    font-size: 13.5px;
  }
  #nonsurgery-section .nonsurgery-tabs li:nth-child(4) {
    transform: translateX(calc(50% + 0.15rem));
  }
  #nonsurgery-section .nonsurgery-tabs li:nth-child(5) {
    transform: translateX(calc(50% + 0.15rem));
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic {
    padding: 6.5rem 0 0rem;
    width: 100%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt h3 {
    font-size: 26px;
    text-wrap: balance;
    padding: 0 5% 3rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt h3 br {
    display: none;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p {
    padding: 0 5%;
    font-size: 15px;
    text-wrap: balance;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt p br {
    display: none;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list {
    gap: 4px;
    width: 95%;
    margin: 4rem auto 0;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li {
    padding: 1.5rem 0 1rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .info-list > li > span {
    font-size: 12px;
    line-height: 1.25;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list {
    width: 95%;
    margin: 3.5rem auto 0;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li {
    flex: 1;
    padding: 12.5px 0px 10px 0px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .type {
    font-size: 13px;
    width: 85%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li {
    font-size: 12.5px;
    text-wrap: balance;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li br {
    display: none;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .type-list > li .list > li:first-child {
    height: 7.5rem;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list {
    margin: 4rem auto 0;
    gap: 0.5rem;
    width: 97.5%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .icon {
    height: 40px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .icon img {
    transform: scale(0.7);
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li .text {
    font-size: 12.5px;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .txt .step-list li.content {
    height: 160px;
    width: 110px;
    padding: 2rem 0 2rem;
    flex-direction: column;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure {
    width: 90%;
  }
  #nonsurgery-section .nonsurgery-swiper .swiper-wrapper .swiper-slide .nonsurgery-clinic .figure img {
    max-height: unset;
  }
}
/* ---------------nonsurgery-section END--------------- */
/* ---------------manual-section START--------------- */
#manual-section .desc-wrap {
  margin: 12.5rem 0 12.5rem;
  display: flex;
  justify-content: center;
}
#manual-section .desc-wrap .desc {
  position: relative;
  flex: 1;
  text-align: center;
}
#manual-section .desc-wrap .desc .icon {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#manual-section .desc-wrap .desc h4 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #1f357c;
  padding: 2.9rem 0 2rem;
}
#manual-section .desc-wrap .desc:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  height: 135%;
  width: 1px;
  background-color: #ddd;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
#manual-section .box-wrap {
  margin: 6rem 0 0;
  display: flex;
  gap: 7.2rem;
  align-items: center;
}
#manual-section .box-wrap .manual-swiper, #manual-section .box-wrap .exercise-swiper {
  position: relative;
  width: 50%;
  overflow: hidden;
}
#manual-section .box-wrap .manual-swiper .swiper-wrapper .swiper-slide, #manual-section .box-wrap .exercise-swiper .swiper-wrapper .swiper-slide {
  opacity: 1 !important;
  transition: clip-path 1.25s var(--ease);
}
#manual-section .box-wrap .manual-swiper .swiper-wrapper .swiper-slide.swiper-slide-active, #manual-section .box-wrap .exercise-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  clip-path: inset(0 0 0 0);
  z-index: 3;
}
#manual-section .box-wrap .manual-swiper .swiper-wrapper .swiper-slide.swiper-slide-prev, #manual-section .box-wrap .exercise-swiper .swiper-wrapper .swiper-slide.swiper-slide-prev {
  clip-path: inset(0 100% 0 0);
  z-index: 1;
}
#manual-section .box-wrap .manual-swiper .swiper-wrapper .swiper-slide.swiper-slide-next, #manual-section .box-wrap .exercise-swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  clip-path: inset(0 0 0 100%);
  z-index: 2;
}
#manual-section .box-wrap .txt {
  width: calc(50% - 7.2rem);
}
#manual-section .box-wrap .txt h4 {
  font-size: 2.4rem;
  padding: 0 0 3.5rem 0;
  line-height: 1.34;
}
#manual-section .box-wrap .txt .list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#manual-section .box-wrap .txt .list.exercise li {
  flex-direction: column;
}
#manual-section .box-wrap .txt .list.exercise li > p {
  text-align: center;
}
#manual-section .box-wrap .txt .list li {
  opacity: 0;
  transform: translateY(2rem);
  transition: transform 1s ease, opacity 0.5s ease;
  border-radius: 2rem;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 3.1rem 3.1rem;
}
#manual-section .box-wrap .txt .list li img {
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
  width: 24px;
  flex-shrink: 0;
}
#manual-section .box-wrap .txt .list li:nth-child(1) {
  transition-delay: 0.05s;
}
#manual-section .box-wrap .txt .list li:nth-child(2) {
  transition-delay: 0.1s;
}
#manual-section .box-wrap .txt .list li:nth-child(3) {
  transition-delay: 0.15s;
}
#manual-section .box-wrap .txt .list li:nth-child(4) {
  transition-delay: 0.2s;
}
#manual-section .box-wrap .txt .list li:nth-child(5) {
  transition-delay: 0.25s;
}
#manual-section .box-wrap .txt .list li:nth-child(6) {
  transition-delay: 0.3s;
}
#manual-section .box-wrap .txt .list.animate li {
  transform: translateY(0rem);
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  #manual-section .box-wrap {
    flex-direction: column;
    align-items: center;
  }
  #manual-section .box-wrap.exercise {
    flex-direction: column-reverse;
  }
  #manual-section .box-wrap .manual-swiper, #manual-section .box-wrap .exercise-swiper {
    width: 700px;
  }
  #manual-section .box-wrap .txt {
    width: 700px;
  }
}
@media screen and (max-width: 767px) {
  #manual-section .desc-wrap {
    margin: 6rem 0 0;
    flex-direction: column;
    align-items: center;
    gap: 7rem;
  }
  #manual-section .desc-wrap .desc {
    width: 100%;
  }
  #manual-section .desc-wrap .desc .icon {
    height: 39px;
  }
  #manual-section .desc-wrap .desc .icon img {
    transform: scale(0.7);
  }
  #manual-section .desc-wrap .desc h4 {
    padding: 2rem 0 2rem;
  }
  #manual-section .desc-wrap .desc:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 75%;
    background-color: #ddd;
    top: unset;
    transform: translateX(-50%);
    right: unset;
    bottom: -4rem;
    left: 50%;
  }
  #manual-section .box-wrap {
    margin: 4rem 0 0;
    gap: 4rem;
  }
  #manual-section .box-wrap .manual-swiper, #manual-section .box-wrap .exercise-swiper {
    width: 100%;
  }
  #manual-section .box-wrap .manual-swiper .swiper-wrapper, #manual-section .box-wrap .exercise-swiper .swiper-wrapper {
    perspective: 1200px;
  }
  #manual-section .box-wrap .txt {
    width: 100%;
  }
  #manual-section .box-wrap .txt h4 {
    text-align: center;
  }
  #manual-section .box-wrap .txt h4 br {
    display: none;
  }
  #manual-section .box-wrap .txt .list.exercise li p {
    line-height: 1.5;
  }
  #manual-section .box-wrap .txt .list li {
    padding: 2rem;
  }
  #manual-section .box-wrap .txt .list li img {
    width: 20px;
  }
  #manual-section .box-wrap .txt .list li p {
    text-wrap: initial;
  }
  #manual-section .box-wrap .txt .list li:nth-child(1) {
    transition-delay: 0.1s;
  }
  #manual-section .box-wrap .txt .list li:nth-child(2) {
    transition-delay: 0.2s;
  }
  #manual-section .box-wrap .txt .list li:nth-child(3) {
    transition-delay: 0.3s;
  }
  #manual-section .box-wrap .txt .list li:nth-child(4) {
    transition-delay: 0.4s;
  }
  #manual-section .box-wrap .txt .list li:nth-child(5) {
    transition-delay: 0.5s;
  }
  #manual-section .box-wrap .txt .list li:nth-child(6) {
    transition-delay: 0.6s;
  }
}
/* ---------------manual-section END--------------- */
/* ---------------child-growth START--------------- */
#child-growth .box-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}
#child-growth .box-wrap .figure {
  width: 60%;
}
#child-growth .box-wrap .text-box {
  width: 40%;
  text-align: right;
}
#child-growth .box-wrap .text-box h3 {
  font-size: 3.2rem;
  padding: 0 0 2rem 0;
}
@media screen and (max-width: 1279px) {
  #child-growth .box-wrap {
    gap: 20px;
  }
  #child-growth .box-wrap .figure {
    width: 50%;
  }
  #child-growth .box-wrap .text-box {
    width: 50%;
  }
  #child-growth .box-wrap .text-box p {
    text-wrap: balance;
  }
  #child-growth .box-wrap .text-box p br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #child-growth .box-wrap {
    flex-direction: column;
    gap: 5rem;
  }
  #child-growth .box-wrap .figure {
    width: 100%;
  }
  #child-growth .box-wrap .text-box {
    text-align: center;
    width: 100%;
    transition-delay: 0.5s;
  }
}
/* ---------------child-growth END--------------- */
/* ---------------sap-section START--------------- */
#sap-section {
  text-align: center;
}
#sap-section .sap-features {
  margin: 6rem auto;
  display: inline-flex;
  justify-content: center;
  position: relative;
}
#sap-section .sap-features .circle-img {
  opacity: 0;
  transition: opacity 1s 0.5s;
  width: 50.6rem;
}
#sap-section .sap-features .feature-text {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0;
  filter: blur(10px);
  line-height: 1.3;
  transition: all 2.5s cubic-bezier(0.77, 0, 0.175, 1);
}
#sap-section .sap-features .feature-text.text1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sap-section .sap-features .feature-text.text2 {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
#sap-section .sap-features .feature-text.text3 {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
#sap-section .sap-features .feature-text.text4 {
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
}
#sap-section .sap-features.animate .circle-img {
  opacity: 1;
}
#sap-section .sap-features.animate .feature-text {
  opacity: 1;
  filter: blur(0px);
}
#sap-section .sap-features.animate .feature-text.text1 {
  top: 26.5%;
  left: -22%;
  transform: translate(-50%, -50%);
}
#sap-section .sap-features.animate .feature-text.text2 {
  top: 26.5%;
  right: -22%;
  transform: translate(50%, -50%);
}
#sap-section .sap-features.animate .feature-text.text3 {
  bottom: 24%;
  left: -22%;
  transform: translate(-50%, 50%);
}
#sap-section .sap-features.animate .feature-text.text4 {
  bottom: 24%;
  right: -22%;
  transform: translate(50%, 50%);
}
#sap-section .sap-list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
#sap-section .sap-list.animate li {
  opacity: 1;
  transform: translateY(0rem);
}
#sap-section .sap-list li {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 1s;
  padding: 3rem;
  text-align: left;
  flex: 1;
  background-color: #fff;
  border-radius: 2rem;
  position: relative;
  min-height: 15.8rem;
}
#sap-section .sap-list li .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #34a8df;
}
#sap-section .sap-list li h3 {
  font-size: 2.2rem;
  font-weight: 800;
  padding: 0.8rem 0 0;
}
#sap-section .sap-list li .sap-icon-img {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
#sap-section .sap-list li:nth-child(1) .sap-icon-img {
  height: 5.9rem;
}
#sap-section .sap-list li:nth-child(2) .sap-icon-img {
  height: 4.9rem;
}
#sap-section .sap-list li:nth-child(3) .sap-icon-img {
  height: 5rem;
}
#sap-section .sap-list li:nth-child(4) .sap-icon-img {
  height: 5.5rem;
}
#sap-section .sap-list li:nth-child(5) .sap-icon-img {
  height: 5rem;
}
#sap-section .sap-list li:nth-child(6) .sap-icon-img {
  height: 5.5rem;
}
#sap-section .sap-list li:nth-child(7) .sap-icon-img {
  height: 5.2rem;
}
#sap-section .sap-list li:nth-child(1) {
  transition-delay: 0.075s;
}
#sap-section .sap-list li:nth-child(2) {
  transition-delay: 0.15s;
}
#sap-section .sap-list li:nth-child(3) {
  transition-delay: 0.225s;
}
#sap-section .sap-list li:nth-child(4) {
  transition-delay: 0.3s;
}
#sap-section .sap-list li:nth-child(5) {
  transition-delay: 0.375s;
}
#sap-section .sap-list li:nth-child(6) {
  transition-delay: 0.45s;
}
#sap-section .sap-list li:nth-child(7) {
  transition-delay: 0.525s;
}
#sap-section .sap-list li:nth-child(8) {
  transition-delay: 0.6s;
}

@media screen and (max-width: 1279px) {
  #sap-section .sap-features .circle-img {
    width: 40rem;
  }
  #sap-section .sap-features .feature-text {
    font-size: 2rem;
  }
  #sap-section .sap-features.animate .feature-text.text1 {
    top: 26.5%;
    left: -23%;
  }
  #sap-section .sap-features.animate .feature-text.text2 {
    top: 26.5%;
    right: -25%;
  }
  #sap-section .sap-features.animate .feature-text.text3 {
    bottom: 24%;
    left: -23%;
  }
  #sap-section .sap-features.animate .feature-text.text4 {
    bottom: 24%;
    right: -25%;
  }
  #sap-section .sap-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 991px) {
  #sap-section .sap-features .circle-img {
    width: 36rem;
  }
  #sap-section .sap-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #sap-section .sap-features .circle-img {
    width: 250px;
  }
  #sap-section .sap-features .feature-text {
    font-size: 1.8rem;
  }
  #sap-section .sap-features.animate .feature-text.text1 {
    top: 22.5%;
    left: -19%;
  }
  #sap-section .sap-features.animate .feature-text.text2 {
    top: 22.5%;
    right: -17%;
  }
  #sap-section .sap-features.animate .feature-text.text3 {
    bottom: 20%;
    left: -19%;
  }
  #sap-section .sap-features.animate .feature-text.text4 {
    bottom: 20%;
    right: -17%;
  }
  #sap-section .sap-list {
    width: 92%;
  }
  #sap-section .sap-list li {
    padding: 2rem;
  }
  #sap-section .sap-list li .sap-icon-img {
    transform: scale(0.9);
    transform-origin: bottom right;
  }
}
@media screen and (max-width: 450px) {
  #sap-section .sap-features .circle-img {
    width: 180px;
  }
  #sap-section .sap-features .feature-text {
    font-size: 1.7rem;
  }
  #sap-section .sap-features.animate .feature-text.text1 {
    top: 20.5%;
    left: -22%;
  }
  #sap-section .sap-features.animate .feature-text.text2 {
    top: 20.5%;
    right: -22%;
  }
  #sap-section .sap-features.animate .feature-text.text3 {
    bottom: 17.5%;
    left: -22%;
  }
  #sap-section .sap-features.animate .feature-text.text4 {
    bottom: 17.5%;
    right: -22%;
  }
  #sap-section .sap-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 350px) {
  #sap-section .sap-features .circle-img {
    width: 150px;
  }
  #sap-section .sap-features .feature-text {
    font-size: 1.6rem;
  }
  #sap-section .sap-features.animate .feature-text.text1 {
    top: 20%;
    left: -17.5%;
  }
  #sap-section .sap-features.animate .feature-text.text2 {
    top: 20%;
    right: -18.5%;
  }
  #sap-section .sap-features.animate .feature-text.text3 {
    bottom: 17.5%;
    left: -17.5%;
  }
  #sap-section .sap-features.animate .feature-text.text4 {
    bottom: 17.5%;
    right: -18.5%;
  }
}
/* ---------------sap-section END--------------- */
/* ---------------equipment-section START--------------- */
#equipment-section .maxwidth {
  max-width: 1300px;
}
#equipment-section .maxwidth .equip-wrap {
  margin: 7.1rem auto 0;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
#equipment-section .maxwidth .equip-wrap .equip {
  overflow: hidden;
  background-color: #f8f8f8;
  padding: 2.8rem;
  border-radius: 2rem;
}
#equipment-section .maxwidth .equip-wrap .equip .inner .figure {
  position: relative;
}
#equipment-section .maxwidth .equip-wrap .equip .inner .figure .tag {
  position: absolute;
  left: -2.8rem;
  bottom: 4.4rem;
  background-color: #34a8df;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  width: 11.5rem;
  height: 10.5rem;
  display: flex;
  align-items: center;
  line-height: 1.3;
  padding: 0 1.5rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
#equipment-section .maxwidth .equip-wrap .equip .inner .txt {
  padding: 4.1rem 1.5rem 1rem;
}
#equipment-section .maxwidth .equip-wrap .equip .inner .txt h4 {
  font-size: 2.4rem;
  font-weight: 800;
  padding-bottom: 1.5rem;
}
#equipment-section .maxwidth .equip-wrap .equip .inner .txt p {
  font-size: 1.8rem;
}

@media screen and (max-width: 1279px) {
  #equipment-section .maxwidth .equip-wrap {
    gap: 1rem;
  }
  #equipment-section .maxwidth .equip-wrap .equip {
    padding: 1.8rem;
  }
  #equipment-section .maxwidth .equip-wrap .equip .inner .figure .tag {
    left: -1.8rem;
    font-size: 1.4rem;
    height: 8.5rem;
    width: 8.5rem;
    bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #equipment-section .maxwidth .equip-wrap {
    grid-template-columns: 1fr 1fr;
  }
  #equipment-section .maxwidth .equip-wrap .equip .inner .figure .tag {
    font-size: 1.3rem;
    height: 7.5rem;
    width: 6.5rem;
    bottom: 1rem;
    padding: 0 1rem;
    text-wrap: balance;
  }
  #equipment-section .maxwidth .equip-wrap .equip .inner .figure .tag br {
    display: none;
  }
  #equipment-section .maxwidth .equip-wrap .equip .inner .txt {
    padding: 3.5rem 0 0;
  }
  #equipment-section .maxwidth .equip-wrap .equip .inner .txt p {
    text-wrap: balance;
    font-size: 13.5px;
  }
}
/* ---------------equipment-section START--------------- */
/* ---------------interior-section START--------------- */
#interior-section .maxwidth .interior-swiper {
  position: relative;
  margin: 4.7rem 0 0;
  overflow: hidden;
}
#interior-section .maxwidth .thumb-btn {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin: 1.2rem 0 0;
}
#interior-section .maxwidth .thumb-btn li {
  position: relative;
}
#interior-section .maxwidth .thumb-btn li button {
  opacity: 0.75;
  filter: grayscale(0.25);
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}
#interior-section .maxwidth .thumb-btn li button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  #interior-section .maxwidth .thumb-btn li button:hover {
    opacity: 1;
    filter: grayscale(0);
  }
}
#interior-section .maxwidth .thumb-btn li.active button {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

@media screen and (max-width: 1023px) {
  #interior-section .maxwidth .thumb-btn {
    margin: 5px 0 0;
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 6px;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #interior-section {
    padding-bottom: 85px;
  }
  #interior-section .maxwidth .interior-swiper .swiper-wrapper .swiper-slide img {
    border-radius: 10px;
    overflow: hidden;
  }
  #interior-section .maxwidth .thumb-btn {
    margin: 4px 0 0;
    -moz-column-gap: 6px;
         column-gap: 6px;
    row-gap: 4px;
  }
}
@media screen and (max-width: 450px) {
  #interior-section {
    padding-bottom: 60px;
  }
}
/* ---------------interior-section END--------------- */
/* ---------------location-section START--------------- */
.location-section {
  padding: 11.7rem 0 8.4rem;
  background-color: #133a85;
}
.location-section .box-wrap {
  display: flex;
  gap: 3.7%;
  align-items: center;
}
.location-section .box-wrap #map {
  width: 55%;
  border-radius: 3rem;
  overflow: hidden;
  height: 64.3rem;
}
.location-section .box-wrap #map iframe {
  width: 100%;
  height: 100%;
}
.location-section .box-wrap #information {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 1s ease, clip-path 1s ease;
  padding: 5rem 0 0;
  width: 45%;
}
.location-section .box-wrap #information h3 {
  padding: 0 10px 5.4rem;
}
.location-section .box-wrap #information .info {
  border-top: 1px solid rgba(204, 204, 204, 0.2);
  padding: 4.3rem 10px;
  color: #fff;
  display: flex;
  gap: 5rem;
}
.location-section .box-wrap #information .info h4 {
  font-weight: 900;
  font-size: 2.4rem;
}
.location-section .box-wrap #information .info .table-wrap .time-table {
  padding: 0 0 1.1rem 0;
}
.location-section .box-wrap #information .info .table-wrap .time-table > li {
  padding: 0 0 1.3rem 0;
  line-height: 1;
}
.location-section .box-wrap #information .info .table-wrap .time-table > li .day {
  display: inline-block;
  width: 13rem;
}
.location-section .box-wrap #information .info .table-wrap .notice > li {
  font-size: 1.5rem;
}
.location-section .box-wrap #information .info a {
  font-weight: 900;
  font-size: 2.4rem;
}
.location-section .box-wrap #information .info.address {
  align-items: center;
  padding: 3rem 10px;
}
.location-section .box-wrap.animate #information {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

@media (max-width: 999px) {
  .location-section {
    padding: 50px 0 0;
  }
  .location-section .box-wrap {
    flex-direction: column;
  }
  .location-section .box-wrap #map {
    width: 100%;
    height: 85vw;
  }
  .location-section .box-wrap #information {
    padding: 4rem 0 0;
    width: 100%;
    clip-path: inset(0 0 0 0);
  }
  .location-section .box-wrap #information h3 {
    padding: 0 10px 4rem;
  }
  .location-section .box-wrap #information h3 img {
    width: 200px;
  }
  .location-section .box-wrap #information .info {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 10px;
  }
  .location-section .box-wrap #information .info.address {
    align-items: flex-start;
    padding: 2.7rem 10px;
  }
}
/* ---------------location-section END--------------- *//*# sourceMappingURL=main.css.map */