@charset "UTF-8";
/* ---------------공통 START--------------- */
.section-title {
  line-height: 1.2;
}

.section-title + .section-desc {
  margin-top: 40px;
}

.section-desc {
  line-height: 1.3;
}

.title-box-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-box-center .icon {
  height: 70px;
}
.title-box-center .icon img {
  display: block;
  height: 100%;
  width: auto;
}
.title-box-center .section-eng {
  margin-top: 25px;
}
.title-box-center .section-eng + .section-title {
  margin-top: 45px;
}

@media screen and (max-width: 1350px) {
  .section-title + .section-desc {
    margin-top: 36px;
  }
  .title-box-center .icon {
    height: 63px;
  }
  .title-box-center .section-eng {
    margin-top: 23px;
  }
  .title-box-center .section-eng + .section-title {
    margin-top: 41px;
  }
}
@media screen and (max-width: 1150px) {
  .section-title + .section-desc {
    margin-top: 32px;
  }
  .title-box-center .icon {
    height: 56px;
  }
  .title-box-center .section-eng {
    margin-top: 21px;
  }
  .title-box-center .section-eng + .section-title {
    margin-top: 37px;
  }
}
@media screen and (max-width: 600px) {
  .section-title + .section-desc {
    margin-top: 28px;
  }
  .title-box-center .icon {
    height: 49px;
  }
  .title-box-center .section-eng {
    margin-top: 19px;
  }
  .title-box-center .section-eng + .section-title {
    margin-top: 33px;
  }
}
@media screen and (max-width: 450px) {
  .section-title + .section-desc {
    margin-top: 24px;
  }
  .title-box-center .icon {
    height: 42px;
  }
  .title-box-center .section-eng {
    margin-top: 17px;
  }
  .title-box-center .section-eng + .section-title {
    margin-top: 29px;
  }
}
/* ---------------공통 END--------------- */
/* ---------------visual-section START--------------- */
.visual-section {
  width: 97.5%;
  margin-left: 1.25%;
  height: calc(var(--full-vh, 100vh) * 1);
  border-radius: 20px;
  overflow: hidden;
}
.visual-section .visual-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.visual-section .visual-slider .slider-wrapper {
  height: 100%;
}
.visual-section .visual-slider .slider-wrapper .slider-box {
  height: 100%;
}
.visual-section .visual-slider .slider-wrapper .slider-box.active .bg-box img {
  transform: scale(1.05);
}
.visual-section .visual-slider .slider-wrapper .slider-box.active .text-box .icon {
  opacity: 1;
}
.visual-section .visual-slider .slider-wrapper .slider-box.active .text-box .section-eng {
  opacity: 1;
}
.visual-section .visual-slider .slider-wrapper .slider-box.active .text-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.visual-section .visual-slider .slider-wrapper .slider-box.active .text-box .desc-list {
  transform: translateY(0);
  opacity: 1;
}
.visual-section .visual-slider .slider-wrapper .slider-box .bg-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.visual-section .visual-slider .slider-wrapper .slider-box .bg-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 15s;
  transition-timing-function: linear;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .section-title + .desc-list {
  margin-top: 25px;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list {
  display: flex;
  box-sizing: border-box;
  padding: 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  min-width: 750px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li {
  flex: 1;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li:not(:nth-of-type(1)) {
  position: relative;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li:not(:nth-of-type(1))::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #4ef7ee;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li .visual-desc {
  line-height: 1.3;
  box-sizing: border-box;
  padding: 0 25px;
  white-space: nowrap;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 3px solid #fff;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  pointer-events: auto !important;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider.btn-slider-prev {
  left: 0;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider.btn-slider-next {
  right: 0;
}
.visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider img {
  display: block;
  width: 50%;
  height: auto;
}

@media screen and (max-width: 1350px) {
  .visual-section {
    border-radius: 18px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .section-title + .desc-list {
    margin-top: 23px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list {
    padding: 9px 0;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li .visual-desc {
    padding: 0 23px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 1150px) {
  .visual-section {
    border-radius: 16px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .section-title + .desc-list {
    margin-top: 21px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list {
    padding: 8px 0;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li .visual-desc {
    padding: 0 21px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 991px) {
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list {
    min-width: 100%;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider {
    top: unset;
    transform: translateY(unset);
    bottom: 2.5%;
  }
}
@media screen and (max-width: 850px) {
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list {
    flex-wrap: wrap;
    min-width: auto;
    width: 90%;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li {
    width: 100%;
    flex: unset;
    box-sizing: border-box;
    padding: 16px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li:not(:nth-of-type(1))::before {
    width: 33%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 1px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li .visual-desc {
    padding: unset;
  }
}
@media screen and (max-width: 600px) {
  .visual-section {
    border-radius: 14px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .section-title + .desc-list {
    margin-top: 19px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list {
    padding: 7px 0;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li {
    padding: 14px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 450px) {
  .visual-section {
    border-radius: 12px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .section-title + .desc-list {
    margin-top: 17px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list {
    padding: 6px 0;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .desc-list li {
    padding: 12px;
  }
  .visual-section .visual-slider .slider-wrapper .slider-box .text-box .btn-slider {
    width: 60px;
    height: 60px;
  }
}
/* ---------------main-visual END--------------- */
/* ---------------clinic-section START--------------- */
.clinic-section {
  width: 97.5%;
  margin-left: 1.25%;
}
.clinic-section.active .clinic-wrap .clinic-list .list-item {
  transform: translateY(0);
  opacity: 1;
}
.clinic-section .clinic-wrap .clinic-list {
  display: flex;
  gap: 40px;
}
.clinic-section .clinic-wrap .clinic-list .list-item {
  width: calc((100% - 120px) / 4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.clinic-section .clinic-wrap .clinic-list .list-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.clinic-section .clinic-wrap .clinic-list .list-item:nth-of-type(3) {
  transition-delay: 0.6s;
}
.clinic-section .clinic-wrap .clinic-list .list-item:nth-of-type(4) {
  transition-delay: 0.9s;
}
.clinic-section .clinic-wrap .clinic-list .list-item .inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 500px;
}
.clinic-section .clinic-wrap .clinic-list .list-item .inner .bg-box {
  position: relative;
  height: 100%;
}
.clinic-section .clinic-wrap .clinic-list .list-item .inner .bg-box::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  transition: background-color 0.3s;
}
.clinic-section .clinic-wrap .clinic-list .list-item .inner .bg-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: filter 0.3s;
}
.clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0 50px 40px 50px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(calc(100% - 50px - 40px));
  transition: transform 0.3s;
}
.clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .eng + .title {
  margin-top: 10px;
}
.clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .text {
  visibility: hidden;
  box-sizing: border-box;
  padding-top: 40px;
  opacity: 0;
  line-height: 1.5;
  transition: visibility 0.3s, opacity 0.3s;
}

@media screen and (min-width: 991.1px) {
  .clinic-section .clinic-wrap .clinic-list .list-item:hover .inner .bg-box::before {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item:hover .inner .bg-box img {
    filter: blur(5px);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item:hover .inner .text-box {
    transform: translateY(0);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item:hover .inner .text-box .text {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1350px) {
  .clinic-section .clinic-wrap .clinic-list {
    gap: 36px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item {
    width: calc((100% - 108px) / 4);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner {
    border-radius: 18px;
    height: 450px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box {
    padding: 0 45px 36px 45px;
    transform: translateY(calc(100% - 47px - 36px));
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .eng + .title {
    margin-top: 9px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .text {
    padding-top: 36px;
  }
}
@media screen and (max-width: 1250px) {
  .clinic-section .clinic-wrap .clinic-list {
    flex-wrap: wrap;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item {
    width: calc((100% - 36px) / 2);
  }
}
@media screen and (max-width: 1150px) {
  .clinic-section .clinic-wrap .clinic-list {
    gap: 32px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item {
    width: calc((100% - 32px) / 2);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner {
    border-radius: 16px;
    height: 400px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box {
    padding: 0 40px 32px 40px;
    transform: translateY(calc(100% - 43px - 32px));
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .eng + .title {
    margin-top: 8px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .text {
    padding-top: 32px;
  }
}
@media screen and (max-width: 991px) {
  .clinic-section .clinic-wrap .clinic-list .list-item.active .inner .bg-box::before {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item.active .inner .bg-box img {
    filter: blur(5px);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item.active .inner .text-box {
    transform: translateY(0);
  }
  .clinic-section .clinic-wrap .clinic-list .list-item.active .inner .text-box .text {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .clinic-section .clinic-wrap .clinic-list {
    gap: 28px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item {
    width: 100%;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner {
    border-radius: 14px;
    height: 350px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box {
    padding: 0 35px 28px 35px;
    transform: translateY(calc(100% - 40px - 28px));
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .eng + .title {
    margin-top: 7px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .text {
    padding-top: 28px;
  }
}
@media screen and (max-width: 450px) {
  .clinic-section .clinic-wrap .clinic-list {
    gap: 24px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner {
    border-radius: 12px;
    height: 300px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box {
    padding: 0 30px 24px 30px;
    transform: translateY(calc(100% - 36px - 24px));
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .eng + .title {
    margin-top: 6px;
  }
  .clinic-section .clinic-wrap .clinic-list .list-item .inner .text-box .text {
    padding-top: 24px;
  }
}
/* ---------------clinic-section END--------------- */
/* ---------------pain-section START--------------- */
.pain-section {
  overflow: hidden;
}
.pain-section.active .title-txt .title-box .icon {
  opacity: 1;
}
.pain-section.active .title-txt .title-box .section-eng {
  opacity: 1;
}
.pain-section.active .title-txt .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.pain-section.active .title-txt .title-box .section-desc {
  transform: translateY(0);
  opacity: 1;
}
.pain-section.active .title-txt .button3 {
  transform: translateY(0);
  opacity: 1;
}
.pain-section .title-txt .title-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.pain-section .title-txt .title-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.pain-section .title-txt .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.pain-section .title-txt .title-box .section-desc {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}
.pain-section .title-txt .button3 {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.9s;
}

.button2 {
  cursor: pointer;
  margin-top: 2.5rem;
  position: relative;
  display: flex;
  width: 27.6rem;
  height: 6.3rem;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  justify-content: center;
  gap: 5.8rem;
  align-items: center;
  overflow: hidden;
}
.button2 span, .button2 img {
  z-index: 2;
  position: relative;
}
.button2::after {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 0;
  transition: width 0.35s;
  background-color: #122a88;
  border-radius: 30px;
}
.button2:hover::after {
  width: 100%;
}
.button2:hover {
  color: #fff;
}
.button2:hover img {
  filter: brightness(0%) invert(100);
}

.cmt1 {
  display: block;
  padding-bottom: 3.3rem;
  text-transform: uppercase;
}
.cmt1.pb {
  padding-bottom: 1.3rem;
}

@media screen and (max-width: 767px) {
  .cmt1 {
    padding-bottom: 2.5rem;
  }
}
@keyframes spot {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.spot {
  animation: spot 1.2s ease 2s infinite alternate both;
}

.spot2 {
  animation: spot 1.2s ease 0s infinite alternate both;
}

@media screen and (min-width: 1921px) {
  #wrap .pain-wrap.pc .main-page .pain-banner {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #wrap .sub-page .sub > img:first-child {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #wrap .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%);
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .virtual {
    width: 45%;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .txt {
    width: 55%;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .txt h2 {
    color: #122a88;
    padding-bottom: 0.5208333333vw;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .txt p {
    line-height: 1.3;
    padding-bottom: 1.3541666667vw;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .txt p b {
    color: #122a88;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .txt ul {
    padding-left: 0.5208333333vw;
    display: flex;
  }
  #wrap .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: #122a88;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button {
    border-radius: 1.5625vw;
    gap: 4.6875vw;
    margin-top: 1.3020833333vw;
    width: 14.3229166667vw;
    height: 3.2291666667vw;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button img {
    display: block;
    margin-left: 0.5208333333vw;
    width: 12px;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap.reverse {
    flex-direction: row-reverse;
  }
  #wrap .pain-wrap.pc .sub-page .sub .box-wrap.reverse .txt {
    padding-left: 15%;
  }
}
.pain-wrap.mo {
  display: none;
}

.pain-wrap.pc {
  position: relative;
  overflow: hidden;
  width: 97.5%;
  margin-left: 1.25%;
  border-radius: 20px;
}
.pain-wrap.pc .main-page {
  position: relative;
  transition: all 1.5s ease 0s;
}
.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 {
  transition: all 0.75s ease 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.pain-wrap.pc .main-page .title-txt .ci {
  margin: 0 auto;
  width: 2.7604166667vw;
  padding-bottom: 1.5104166667vw;
}
.pain-wrap.pc .main-page .title-txt .cmt1 {
  padding-bottom: 1.1979166667vw;
}
.pain-wrap.pc .main-page .title-txt .cmt2 {
  padding-bottom: 1.3020833333vw;
  line-height: 1.1;
}
.pain-wrap.pc .main-page .title-txt .cmt3 {
  line-height: 1.3;
}
.button3 {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  flex-direction: column;
  color: #fff;
  margin: 3.3854166667vw auto 0;
  width: 23.3333333333vw;
  height: 8.5416666667vw;
  border-radius: 5.2083333333vw;
  background: linear-gradient(to bottom, #4748c3, #132a89);
}
.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: 46%;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt {
  width: 54%;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt h2 {
  color: #122a88;
  padding-bottom: 1rem;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt p {
  line-height: 1.3;
  padding-bottom: 2.6rem;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt p b {
  color: #122a88;
}
.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: #122a88;
  line-height: 1.3;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  width: 16rem;
  height: 16rem;
}
.pain-wrap.pc .sub-page .sub .box-wrap .txt .sub-button {
  border-radius: 30px;
  gap: 9rem;
  margin-top: 2.5rem;
  width: 27.5rem;
  height: 6.2rem;
}
.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: #122a88;
}
.pain-wrap.pc .sub-page .sub .box-wrap.reverse {
  flex-direction: row-reverse;
}
.pain-wrap.pc .sub-page .sub .box-wrap.reverse .txt {
  padding-left: 30px;
}
.pain-wrap.pc .sub-page .sub.show {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1) translate(0%, 0%) rotateY(0deg);
  z-index: 10;
}

@media screen and (max-width: 1350px) {
  .pain-wrap.pc {
    border-radius: 18px;
  }
}
@media screen and (max-width: 1150px) {
  .pain-wrap.pc {
    border-radius: 16px;
  }
}
@media (max-width: 1023px) {
  .pain-wrap.pc {
    display: none;
  }
  .pain-wrap.mo {
    width: 97.5%;
    margin-left: 1.25%;
    border-radius: 16px;
    position: relative;
    padding: 4rem 0 0;
    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 .ci {
    margin: 0 auto;
    width: 4.2rem;
    padding-bottom: 2.5rem;
  }
  .pain-wrap.mo .main-page .title-txt .cmt2 {
    line-height: 1.1;
    padding-bottom: 1.3rem;
  }
  .pain-wrap.mo .main-page .title-txt .cmt3 {
    line-height: 1.3;
  }
  .pain-wrap.mo .main-page .title-txt .cmt3 br {
    display: block;
  }
  .pain-wrap.mo .main-page .title-txt .button3 {
    margin: 4rem auto 3.5rem;
    width: 70%;
    height: 12rem;
    border-radius: 100px;
    max-width: 300px;
  }
  .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;
  }
  .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: 33%;
    right: -1%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper03 {
    top: 60%;
    right: 0%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper04 {
    bottom: 20%;
    left: 50%;
  }
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner .upper05 {
    bottom: 10%;
    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: 2.5rem 0 2.5rem;
    position: relative;
    z-index: 9;
  }
  .pain-wrap.mo .main-page .body-swiper .body-swiper-navigation .body-swiper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-radius: 100px;
    width: 90px;
    height: 37px;
    background-color: #fff;
    border: 1px solid #122a88;
    color: #122a88;
    box-sizing: border-box;
    transition: 0.3s ease;
  }
  .pain-wrap.mo .main-page .body-swiper .body-swiper-navigation .body-swiper-nav.active {
    background-color: #122a88;
    color: #fff; /* font-weight: 800; */
  }
  .pain-wrap.mo .sub-page .sub {
    background-color: #f8f8f8;
    position: absolute;
    padding: 4rem 10px 0;
    inset: 0;
    z-index: 10;
    width: calc(100% - 20px);
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 auto;
    opacity: 0;
    filter: blur(30px);
    transform: scale(3) translate(32%, 28%) rotateY(90deg);
    transition: all 1.5s ease 0s;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt h2 {
    color: #122a88;
    padding-bottom: 1.8rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt p {
    padding-bottom: 3.6rem;
    line-height: 1.3;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt p b {
    color: #122a88;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt p br {
    display: none;
  }
  .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: #122a88;
    border-radius: 50%;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    width: 16rem;
    height: 16rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button {
    border-radius: 30px;
    gap: 9rem;
    margin-top: 4.5rem;
    margin-bottom: 5rem;
    width: 27.5rem;
    height: 6.2rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button img {
    display: block;
    margin-left: 1rem;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt .sub-button::after {
    display: none;
    background-color: #08706b;
  }
  .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 {
    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: 10vw;
    position: absolute;
  }
  .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: 15%;
    right: 20%;
  }
  .pain-wrap.mo .sub-page .sub.show {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1) translate(0%, 0%) rotateY(0deg);
    z-index: 10;
  }
}
@media screen and (max-width: 600px) {
  .pain-wrap.mo {
    border-radius: 14px;
  }
}
@media (max-width: 500px) {
  .pain-wrap.mo .main-page .body-swiper .swiper-slide .inner {
    width: 70%;
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .figure {
    width: calc(100% - 20px);
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt ul {
    grid-template-columns: repeat(2, 50%);
  }
  .pain-wrap.mo .sub-page .sub .box-wrap .txt ul li {
    width: 48vw;
    height: 48vw;
  }
}
@media screen and (max-width: 450px) {
  .pain-wrap.mo {
    border-radius: 12px;
  }
}
.pain-section img {
  max-width: 100%;
  vertical-align: top;
  line-height: 0;
}

/* ---------------pain-section END--------------- */
/* ---------------youtube-section START--------------- */
.youtube-section {
  overflow: hidden;
  width: 97.5%;
  margin-left: 1.25%;
}
.youtube-section.active .txt-area .main-txt {
  transform: translateY(0);
  opacity: 1;
}
.youtube-section.active .txt-area .sub-txt {
  transform: translateY(0);
  opacity: 1;
}
.youtube-section.active .video-area {
  transform: scale(1);
  opacity: 1;
}
.youtube-section .txt-area .main-txt {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.youtube-section .txt-area .sub-txt {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.youtube-section .video-area {
  transform: scale(0.3);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}

#youtube {
  position: relative;
  background-color: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
}
#youtube img {
  max-width: 100%;
}
#youtube .inner-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#youtube .inner-box .txt-area {
  padding-right: 3.7%;
  padding-bottom: 0.7rem;
}
#youtube .inner-box .txt-area .main-txt h3 {
  line-height: 1.14;
  padding-bottom: 2rem;
  white-space: nowrap;
}
#youtube .inner-box .txt-area .sub-txt p {
  padding-bottom: 8.5rem;
  line-height: 1.3;
}
#youtube .inner-box .txt-area .sub-txt a {
  color: #122a88;
  background-color: transparent;
  border-radius: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border: 2px solid #122a88;
  width: 23.9rem;
  height: 6.2rem;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
#youtube .inner-box .txt-area .sub-txt a:hover {
  background-color: #122a88;
  color: #fff;
}
#youtube .inner-box .txt-area .sub-txt a:active {
  background-color: #122a88;
  color: #fff;
}
#youtube .inner-box .video-area {
  display: flex;
  align-items: center;
  gap: 2.3%;
}
#youtube .inner-box .video-area .thumbnail {
  position: relative;
  padding-top: 1.6rem;
}
#youtube .inner-box .video-area .thumbnail iframe {
  width: 66.7rem;
  height: 37.1rem;
}
#youtube .inner-box .video-area .thumbnail .dummy-thumb {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#youtube .inner-box .video-area .list {
  padding-right: 0%;
  width: 33.5rem;
  height: 55rem;
  overflow-y: scroll;
}
#youtube .inner-box .video-area .list li {
  cursor: pointer;
  position: relative;
  margin: 1.3rem 0;
  width: 28.2rem;
}
#youtube .inner-box .video-area .list li .dummy-li {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#youtube .inner-box .video-area .list li .title {
  width: calc(100% - 30px);
  opacity: 0;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 15px);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.85rem;
  padding-left: 15px;
  padding-top: 15px;
  padding-right: 15px;
}
#youtube .inner-box .video-area .list li .title.active {
  opacity: 1;
}
#youtube .inner-box .video-area .list li .title:hover {
  opacity: 1;
}
#youtube .inner-box .video-area .list::-webkit-scrollbar {
  width: 9px;
  background-color: #fff;
  border-radius: 10px;
}
#youtube .inner-box .video-area .list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ddd;
}
#youtube::after {
  width: 46.9%;
  right: 0;
  height: 100%;
  top: 0;
  background-color: #122a88;
  content: "";
  display: block;
  position: absolute;
}

@media (max-width: 1500px) {
  #youtube .inner-box {
    justify-content: center;
    padding: 0 20px 0 40px;
  }
  #youtube .inner-box .txt-area {
    padding-right: 3.3%;
  }
  #youtube .inner-box .video-area {
    gap: 0;
    flex-direction: column;
  }
  #youtube .inner-box .video-area .thumbnail {
    padding-bottom: 0px;
  }
  #youtube .inner-box .video-area .thumbnail iframe {
    width: 66.8rem;
    height: 37.6rem;
  }
  #youtube .inner-box .video-area .list {
    display: flex;
    padding-right: 0;
    width: 66.8rem;
    height: unset;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 7px;
  }
  #youtube .inner-box .video-area .list li {
    width: 250px;
    min-width: 250px;
    padding: 0rem 0;
    margin-right: 7px;
  }
  #youtube .inner-box .video-area .list li .title {
    font-size: 1.65rem;
    top: 0;
    width: calc(100% - 20px);
    height: calc(100% - 10px);
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
  }
  #youtube .inner-box .video-area .list::-webkit-scrollbar {
    height: 7.5px;
    background-color: #fff;
    border-radius: 5px;
  }
  #youtube .inner-box .video-area .list::-webkit-scrollbar-thumb {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1350px) {
  #youtube {
    border-radius: 18px;
  }
}
@media (min-width: 946px) and (max-width: 1279px) {
  #youtube .inner-box .txt-area .sub-txt p {
    padding-bottom: 5rem;
  }
  #youtube .inner-box .video-area .list {
    margin-top: -1px;
    padding-bottom: 6.5px;
  }
  #youtube .inner-box .video-area .list > li {
    min-width: 220px;
    margin-right: 6.5px;
  }
  #youtube .inner-box .video-area .list > li > .title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 1150px) {
  #youtube {
    border-radius: 16px;
  }
}
@media (max-width: 945px) {
  #youtube .inner-box {
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
  }
  #youtube .inner-box .txt-area {
    padding-right: 0;
    display: flex;
    width: 66.8rem;
    padding-bottom: 5rem;
    justify-content: space-evenly;
    align-items: center;
  }
  #youtube .inner-box .txt-area .main-txt > h3 {
    padding-bottom: 0;
  }
  #youtube .inner-box .txt-area .sub-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #youtube .inner-box .txt-area .sub-txt p {
    padding-bottom: 2rem;
  }
  #youtube .inner-box .txt-area .sub-txt a {
    height: 7rem;
    width: 23rem;
  }
  #youtube .inner-box .video-area {
    gap: 0;
    flex-direction: column;
  }
  #youtube .inner-box .video-area .thumbnail {
    padding-bottom: 0px;
  }
  #youtube .inner-box .video-area .list {
    width: 66.8rem;
    height: unset;
    padding: 7px 0;
  }
  #youtube .inner-box .video-area .list li {
    margin: 0.5rem 0 0.8rem;
    min-width: 200px;
    margin-right: 6px;
  }
  #youtube .inner-box .video-area .list li .title {
    font-size: 1.7rem;
    top: 0;
    height: calc(100% - 10px);
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
  }
  #youtube .inner-box .video-area .list::-webkit-scrollbar {
    height: 7.5px;
    background-color: #fff;
    border-radius: 5px;
  }
  #youtube .inner-box .video-area .list::-webkit-scrollbar-thumb {
    border-radius: 5px;
  }
  #youtube::after {
    height: 47%;
    right: 0;
    width: 100%;
    top: unset;
    bottom: 0;
    background-color: #122a88;
    content: "";
    display: block;
    position: absolute;
  }
}
@media (max-width: 768px) {
  #youtube {
    padding: 6.5rem 0;
  }
  #youtube .inner-box {
    justify-content: center;
    flex-direction: column;
    padding: 0 16px;
  }
  #youtube .inner-box .txt-area {
    padding-right: 0px;
    padding-left: 0px;
    display: flex;
    align-items: center;
    width: unset;
    padding-bottom: 0rem;
    margin-bottom: 4rem;
    justify-content: space-between;
    gap: 20px;
  }
  #youtube .inner-box .txt-area .main-txt > h3 {
    padding-right: 0;
  }
  #youtube .inner-box .txt-area .sub-txt p {
    padding-bottom: 1.5rem;
    padding-left: 10px;
  }
  #youtube .inner-box .txt-area .sub-txt a {
    width: 20rem;
    height: 5rem;
    line-height: 4.5rem;
  }
  #youtube .inner-box .video-area {
    max-width: 420px;
    width: 100%;
    gap: 0;
    flex-direction: column;
  }
  #youtube .inner-box .video-area .thumbnail {
    width: 100%;
    padding-bottom: 0px;
    padding-top: 0;
  }
  #youtube .inner-box .video-area .thumbnail iframe {
    width: 100%;
    max-height: 206px;
  }
  #youtube .inner-box .video-area .list {
    width: 100%;
    height: unset;
    padding: 5px 0;
  }
  #youtube .inner-box .video-area .list li {
    width: 170px;
    min-width: 130px;
    margin-right: 4px;
    margin-top: 1px;
  }
  #youtube .inner-box .video-area .list li .title {
    width: calc(100% - 10px);
    font-size: 1.35rem;
    top: 0;
    height: calc(100% - 5px);
    padding-left: 5px;
    padding-top: 5px;
    padding-right: 5px;
  }
  #youtube .inner-box .video-area .list::-webkit-scrollbar {
    height: 5px;
    background-color: #fff;
    border-radius: 5px;
  }
  #youtube .inner-box .video-area .list::-webkit-scrollbar-thumb {
    border-radius: 5px;
  }
  #youtube::after {
    height: 47%;
    right: 0;
    width: 100%;
    top: unset;
    bottom: 0;
    background-color: #122a88;
    content: "";
    display: block;
    position: absolute;
  }
}
@media screen and (max-width: 600px) {
  #youtube {
    border-radius: 14px;
  }
}
@media screen and (max-width: 450px) {
  #youtube {
    border-radius: 12px;
  }
}
/* ---------------youtube-section END--------------- */
/* ---------------promise-section START--------------- */
.promise-section {
  overflow: hidden;
}
.promise-section.active .promise-wrap .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.promise-section.active .promise-wrap .title-box .section-desc {
  transform: translateY(0);
  opacity: 1;
}
.promise-section.active .promise-wrap .promise-slider {
  opacity: 1;
}
.promise-section .promise-wrap {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: calc((100% - 1400px) / 2);
}
.promise-section .promise-wrap .title-box {
  width: 50%;
  box-sizing: border-box;
  padding-right: 50px;
}
.promise-section .promise-wrap .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.promise-section .promise-wrap .title-box .section-desc {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.promise-section .promise-wrap .promise-slider {
  flex-shrink: 0;
  width: 50%;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.6s;
  overflow: hidden;
}
.promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box {
  width: 510px;
}
.promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .bg-box {
  width: 100%;
  height: 340px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-sizing: border-box;
}
.promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .bg-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 15s;
  transition-timing-function: linear;
}
.promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box {
  box-sizing: border-box;
  padding: 0 20px;
}
.promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin-top: -24px;
}
.promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .title {
  margin-top: 15px;
}
.promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .text {
  line-height: 1.3;
  margin-top: 20px;
}
.promise-section .promise-wrap .promise-slider .swiper-pagination {
  display: flex;
  gap: 15px;
  position: unset !important;
  left: unset !important;
  bottom: unset !important;
  width: auto !important;
  transform: unset !important;
  box-sizing: border-box;
  padding-left: 10px;
  margin-top: 40px;
}
.promise-section .promise-wrap .promise-slider .swiper-pagination span {
  display: block;
  width: 100px;
  height: 8px;
  border-radius: 8px;
  background-color: #d7d8d3;
  opacity: 1 !important;
  margin: unset !important;
  transition: background-color 0.3s;
}
.promise-section .promise-wrap .promise-slider .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #122a88;
}

@media screen and (min-width: 991.1px) {
  .promise-section .promise-wrap .promise-slider .swiper-pagination span:hover {
    background-color: rgba(18, 42, 136, 0.5);
  }
}
@media screen and (max-width: 1417px) {
  .promise-section .promise-wrap {
    padding-left: 5%;
  }
}
@media screen and (max-width: 1350px) {
  .promise-section .promise-wrap .title-box {
    padding-right: 45px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box {
    width: 460px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .bg-box {
    height: 310px;
    border-radius: 18px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box {
    padding: 0 18px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .number {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    margin-top: -22px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .title {
    margin-top: 13px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .text {
    margin-top: 18px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination {
    gap: 13px;
    padding-left: 9px;
    margin-top: 36px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination span {
    width: 90px;
  }
}
@media screen and (max-width: 1150px) {
  .promise-section .promise-wrap .title-box {
    padding-right: 40px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box {
    width: 410px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .bg-box {
    height: 280px;
    border-radius: 16px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box {
    padding: 0 16px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .number {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-top: -20px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .title {
    margin-top: 11px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .text {
    margin-top: 16px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination {
    gap: 11px;
    padding-left: 8px;
    margin-top: 32px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination span {
    width: 80px;
  }
}
@media screen and (max-width: 991px) {
  .promise-section .promise-wrap {
    flex-direction: column;
    justify-content: center;
    padding-left: unset;
    width: 90%;
    margin: 0 auto;
  }
  .promise-section .promise-wrap .title-box {
    width: 100%;
    padding-right: unset;
    padding-bottom: 40px;
    text-align: center;
  }
  .promise-section .promise-wrap .promise-slider {
    width: 100%;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box {
    width: 100%;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .bg-box {
    height: 50vw;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .promise-section .promise-wrap .title-box {
    padding-bottom: 35px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .bg-box {
    border-radius: 14px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box {
    padding: 0 14px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .number {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    margin-top: -18px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .title {
    margin-top: 9px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .text {
    margin-top: 14px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination {
    gap: 9px;
    padding-left: 7px;
    margin-top: 28px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination span {
    width: 70px;
  }
}
@media screen and (max-width: 450px) {
  .promise-section .promise-wrap .title-box {
    padding-bottom: 30px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .bg-box {
    border-radius: 12px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box {
    padding: 0 12px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .number {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-top: -16px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .title {
    margin-top: 7px;
  }
  .promise-section .promise-wrap .promise-slider .slider-wrapper .slider-box .text-box .text {
    margin-top: 12px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination {
    gap: 7px;
    padding-left: 6px;
    margin-top: 24px;
  }
  .promise-section .promise-wrap .promise-slider .swiper-pagination span {
    width: 60px;
    height: 6px;
  }
}
/* ---------------promise-section END--------------- */
/* ---------------doctor-section START--------------- */
.doctor-section.active .title-box .icon {
  opacity: 1;
}
.doctor-section.active .title-box .section-eng {
  opacity: 1;
}
.doctor-section.active .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.doctor-section.active .doctor-wrap .img-box {
  opacity: 1;
}
.doctor-section.active .doctor-wrap .text-box .intro-text {
  opacity: 1;
}
.doctor-section.active .doctor-wrap .text-box .name-box {
  opacity: 1;
}
.doctor-section.active .doctor-wrap .text-box .history-box {
  opacity: 1;
}
.doctor-section .title-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.doctor-section .title-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.doctor-section .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.doctor-section .doctor-wrap {
  display: flex;
  align-items: stretch;
}
.doctor-section .doctor-wrap .img-box {
  flex-shrink: 0;
  position: relative;
  width: 48%;
  border-radius: 0 20px 20px 0;
  box-sizing: border-box;
  padding: 50px 0 0 0;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.6s;
}
.doctor-section .doctor-wrap .img-box .img-doctor {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-section .doctor-wrap .img-box .icon-badge {
  display: block;
  position: absolute;
  width: 140px;
  height: auto;
  right: 30px;
  top: 30px;
}
.doctor-section .doctor-wrap .text-box {
  box-sizing: border-box;
  padding: 40px;
  padding-right: calc((100% - 1400px) / 2);
}
.doctor-section .doctor-wrap .text-box .intro-text {
  line-height: 1.4;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.9s;
}
.doctor-section .doctor-wrap .text-box .name-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.9s;
}
.doctor-section .doctor-wrap .text-box .name-box .doctor-class {
  display: flex;
  align-items: center;
  padding: 0 35px;
  height: 50px;
  border-radius: 50px;
}
.doctor-section .doctor-wrap .text-box .history-box {
  margin-top: 30px;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 1.2s;
}
.doctor-section .doctor-wrap .text-box .history-box .doctor-history-list {
  margin-top: 30px;
}
.doctor-section .doctor-wrap .text-box .history-box .doctor-history-list li {
  line-height: 1.4;
  box-sizing: border-box;
}
.doctor-section .doctor-wrap .text-box .history-box .doctor-history-list li:not(:nth-of-type(1)) {
  padding-top: 5px;
}
.doctor-section .doctor-wrap .text-box .history-box .btn-history-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 170px;
  height: 40px;
  border-radius: 40px;
  box-sizing: border-box;
  border: 1px solid #122a88;
  padding: 0 20px;
  margin-top: 30px;
  transition: background-color 0.3s, color 0.3s;
}
.doctor-section .doctor-wrap .text-box .history-box .btn-history-more span {
  transition: color 0.3s;
}
.doctor-section .doctor-wrap .history-view {
  display: none;
}
.doctor-section .doctor-wrap .history-view .history-bg {
  z-index: 105;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.doctor-section .doctor-wrap .history-view .history-view-inner {
  z-index: 110;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-sizing: border-box;
  padding: 50px 100px;
  border-radius: 20px;
}
.doctor-section .doctor-wrap .history-view .history-view-inner .text-inner {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-height: 70vh;
  overflow-y: auto;
}
.doctor-section .doctor-wrap .history-view .history-view-inner .text-inner .history-view-box .view-history-list {
  margin-top: 30px;
}
.doctor-section .doctor-wrap .history-view .history-view-inner .text-inner .history-view-box .view-history-list li {
  line-height: 1.4;
  box-sizing: border-box;
}
.doctor-section .doctor-wrap .history-view .history-view-inner .text-inner .history-view-box .view-history-list li:not(:nth-of-type(1)) {
  padding-top: 5px;
}
.doctor-section .doctor-wrap .history-view .history-view-inner .btn-history-close {
  position: absolute;
  right: 0;
  top: -50px;
  width: 90px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-section .doctor-wrap .history-view .history-view-inner .btn-history-close img {
  display: block;
  height: 55%;
  width: auto;
}

@media screen and (min-width: 991.1px) {
  .doctor-section .doctor-wrap .text-box .history-box .btn-history-more:hover {
    background-color: #122a88;
    color: #fff;
  }
  .doctor-section .doctor-wrap .text-box .history-box .btn-history-more:hover span {
    color: #fff;
  }
}
@media screen and (max-width: 1417px) {
  .doctor-section .doctor-wrap .text-box {
    padding-right: unset;
    padding: 40px 2.5% 40px 40px;
  }
}
@media screen and (max-width: 1350px) {
  .doctor-section .doctor-wrap .img-box {
    border-radius: 0 18px 18px 0;
    padding: 45px 0 0 0;
  }
  .doctor-section .doctor-wrap .img-box .icon-badge {
    width: 125px;
    right: 27px;
    top: 27px;
  }
  .doctor-section .doctor-wrap .text-box {
    padding: 36px 2.5% 36px 36px;
  }
  .doctor-section .doctor-wrap .text-box .name-box {
    gap: 18px;
    margin-top: 45px;
  }
  .doctor-section .doctor-wrap .text-box .name-box .doctor-class {
    padding: 0 32px;
    height: 45px;
  }
  .doctor-section .doctor-wrap .text-box .history-box {
    margin-top: 27px;
  }
  .doctor-section .doctor-wrap .text-box .history-box .doctor-history-list {
    margin-top: 27px;
  }
  .doctor-section .doctor-wrap .text-box .history-box .btn-history-more {
    width: 155px;
    height: 36px;
    padding: 0 18px;
    margin-top: 27px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner {
    padding: 45px 90px;
    border-radius: 18px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .btn-history-close {
    top: -46px;
    width: 80px;
    height: 36px;
    border-radius: 9px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner {
    gap: 27px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner .history-view-box .view-history-list {
    margin-top: 27px;
  }
}
@media screen and (max-width: 1150px) {
  .doctor-section .doctor-wrap .img-box {
    border-radius: 0 16px 16px 0;
    padding: 40px 0 0 0;
  }
  .doctor-section .doctor-wrap .img-box .icon-badge {
    width: 110px;
    right: 24px;
    top: 24px;
  }
  .doctor-section .doctor-wrap .text-box {
    padding: 32px 2.5% 32px 32px;
  }
  .doctor-section .doctor-wrap .text-box .name-box {
    gap: 16px;
    margin-top: 40px;
  }
  .doctor-section .doctor-wrap .text-box .name-box .doctor-class {
    padding: 0 29px;
    height: 40px;
  }
  .doctor-section .doctor-wrap .text-box .history-box {
    margin-top: 24px;
  }
  .doctor-section .doctor-wrap .text-box .history-box .doctor-history-list {
    margin-top: 24px;
  }
  .doctor-section .doctor-wrap .text-box .history-box .btn-history-more {
    width: 140px;
    height: 32px;
    padding: 0 16px;
    margin-top: 24px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner {
    padding: 40px 80px;
    border-radius: 16px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .btn-history-close {
    top: -42px;
    width: 70px;
    height: 32px;
    border-radius: 8px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner {
    gap: 24px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner .history-view-box .view-history-list {
    margin-top: 24px;
  }
}
@media screen and (max-width: 991px) {
  .doctor-section .doctor-wrap {
    flex-direction: column;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
  }
  .doctor-section .doctor-wrap .img-box {
    padding-top: unset;
    padding: 40px 40px 0 40px;
    width: 100%;
    border-radius: 16px;
  }
  .doctor-section .doctor-wrap .text-box {
    padding: unset;
    width: 100%;
    padding-top: 40px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  .doctor-section .doctor-wrap .img-box {
    border-radius: 14px;
    padding: 35px 35px 0 35px;
  }
  .doctor-section .doctor-wrap .img-box .icon-badge {
    width: 95px;
    right: 21px;
    top: 21px;
  }
  .doctor-section .doctor-wrap .text-box {
    padding-top: 35px;
  }
  .doctor-section .doctor-wrap .text-box .name-box {
    gap: 14px;
    margin-top: 35px;
  }
  .doctor-section .doctor-wrap .text-box .name-box .doctor-class {
    padding: 0 26px;
    height: 35px;
  }
  .doctor-section .doctor-wrap .text-box .history-box {
    margin-top: 21px;
  }
  .doctor-section .doctor-wrap .text-box .history-box .doctor-history-list {
    margin-top: 21px;
  }
  .doctor-section .doctor-wrap .text-box .history-box .btn-history-more {
    width: 125px;
    height: 28px;
    padding: 0 14px;
    margin-top: 21px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner {
    padding: 35px;
    border-radius: 14px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .btn-history-close {
    top: -38px;
    width: 60px;
    height: 28px;
    border-radius: 7px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner {
    gap: 21px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner .history-view-box .view-history-list {
    margin-top: 21px;
  }
}
@media screen and (max-width: 450px) {
  .doctor-section .doctor-wrap .img-box {
    border-radius: 12px;
    padding: 30px 30px 0 30px;
  }
  .doctor-section .doctor-wrap .img-box .icon-badge {
    width: 80px;
    right: 18px;
    top: 18px;
  }
  .doctor-section .doctor-wrap .text-box {
    padding-top: 30px;
  }
  .doctor-section .doctor-wrap .text-box .name-box {
    gap: 12px;
    margin-top: 30px;
  }
  .doctor-section .doctor-wrap .text-box .name-box .doctor-class {
    padding: 0 23px;
    height: 30px;
  }
  .doctor-section .doctor-wrap .text-box .history-box {
    margin-top: 18px;
  }
  .doctor-section .doctor-wrap .text-box .history-box .doctor-history-list {
    margin-top: 18px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner {
    padding: 30px;
    border-radius: 12px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner {
    gap: 18px;
  }
  .doctor-section .doctor-wrap .history-view .history-view-inner .text-inner .history-view-box .view-history-list {
    margin-top: 18px;
  }
}
/* ---------------doctor-section END--------------- */
/* ---------------spine-section START--------------- */
.spine-section.active .title-box .icon {
  opacity: 1;
}
.spine-section.active .title-box .section-eng {
  opacity: 1;
}
.spine-section.active .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.spine-section.active .title-box .section-desc {
  transform: translateY(0);
  opacity: 1;
}
.spine-section.active .tab-wrap {
  opacity: 1;
}
.spine-section .title-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.spine-section .title-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.spine-section .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.spine-section .title-box .section-desc {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}
.spine-section .tab-wrap {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.9s;
}
.spine-section .mwidth {
  width: 100%;
  box-sizing: border-box;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}
.spine-section .mwidth2 {
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}

@media (max-width: 719px) {
  .spine-section .mwidth, .spine-section .mwidth2, .spine-section .mwidth3 {
    padding: 0 10px;
  }
  .spine-section .mwidth {
    padding: 0 16px;
  }
}
#spine .tab-wrap {
  margin: 70px 0 0 0;
}

#spine .tab-wrap .menu-wrap {
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: -38px;
  box-sizing: border-box;
  border: 1px solid #ececec;
  padding: 3px;
  border-radius: 76px;
  background-color: #fff;
}

#spine .tab-wrap .menu-wrap .item {
  max-width: 50%;
  width: 290px;
}

#spine .tab-wrap .menu-wrap .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  border-radius: 68px;
  background-color: #fff;
  box-sizing: border-box;
}
#spine .tab-wrap .menu-wrap .item a.active {
  color: #fff;
  background-color: #122a88;
}

#spine .tab-wrap .content-wrap .content {
  display: none;
}

#spine .tab-wrap .content-wrap .content.active {
  display: block;
}

#spine .tab-wrap .content-wrap .section01 {
  background-color: #f8f8f8;
  overflow: hidden;
  width: 97.5%;
  margin: 0 auto;
  border-radius: 20px;
}

#spine .tab-wrap .content-wrap .section01 .se-box {
  display: flex;
  align-items: center;
}

#spine .tab-wrap .content-wrap .section01 .se-left {
  width: 50%;
  padding: 50px 0;
}

#spine .tab-wrap .content-wrap .section01 .se-right {
  align-self: flex-end;
  width: 50%;
  padding: 100px 0 0 0;
}

#spine .tab-wrap .content-wrap .section02 {
  display: flex;
  justify-content: center;
  margin: -68px 0 55px;
}

#spine .tab-wrap .content-wrap .section02 .item {
  padding: 0 60px;
  width: 100%;
  max-width: 620px;
}

#spine .tab-wrap .content-wrap .section02 .item .inner {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

#spine .tab-wrap .content-wrap .section02 .item-top {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}

#spine .tab-wrap .content-wrap .section02 .item-top .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 68px;
  padding: 2px 0 0 0;
  margin: 0 25px 0 0;
  box-sizing: border-box;
  color: #fff;
}

#spine .tab-wrap .content-wrap .section02 .item-bt {
  margin: 0 0 0 90px;
  line-height: 1.6;
}

#spine .tab-wrap .content-wrap .section03 {
  display: flex;
  justify-content: center;
}

#spine .tab-wrap .content-wrap .section03 .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  max-width: 398px;
  border-radius: 50%;
  margin: 0 -10px;
  text-align: center;
}

#spine .tab-wrap .content-wrap .section03 .item:nth-child(2):before,
#spine .tab-wrap .content-wrap .section03 .item:nth-child(3):before {
  content: "+";
  position: absolute;
  top: 50%;
  right: -2px;
  z-index: 2;
  transform: translateY(-50%);
  font-size: 3.1rem;
  font-weight: 900;
  color: #fff;
}

#spine .tab-wrap .content-wrap .section03 .item:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

#spine .tab-wrap .content-wrap .section03 .item h3 {
  margin: 0 0 15px;
  line-height: 1.2;
}

#spine .tab-wrap .content-wrap .section03 .item h4 {
  margin-bottom: 10px;
  color: #fff;
}

#spine .tab-wrap .content-wrap .section03 .item p {
  color: #fff;
}

#spine .tab-wrap .content-wrap .section03 .item:first-child {
  background-color: #f7ffff;
}

#spine .tab-wrap .content-wrap .section03 .item:first-child p {
  color: #404040;
  line-height: 1.3;
}

@media (max-width: 1350px) {
  #spine .tab-wrap .content-wrap .section01 {
    border-radius: 18px;
  }
  #spine .tab-wrap .content-wrap .section02 .item .inner {
    border-radius: 9px 9px 0 0;
  }
}
@media (max-width: 1279px) {
  #spine .tab-wrap .content-wrap .section01 .se-box {
    flex-wrap: wrap;
  }
  #spine .tab-wrap .content-wrap .section01 .se-left {
    width: 100%;
    padding: 100px 0 0;
    text-align: center;
  }
  #spine .tab-wrap .content-wrap .section01 .se-right {
    width: 100%;
    padding: 50px 0 0 0;
    text-align: center;
  }
  #spine .tab-wrap .content-wrap .section01 .se-right img {
    max-width: 400px;
  }
  #spine .tab-wrap .content-wrap .section02 {
    flex-wrap: wrap;
  }
  #spine .tab-wrap .content-wrap .section02 .item {
    width: 100%;
    padding: 0 20px;
    margin: 0 0 40px;
  }
  #spine .tab-wrap .content-wrap .section03 {
    flex-wrap: wrap;
    max-width: 600px;
    margin: auto;
  }
  #spine .tab-wrap .content-wrap .section03 .item {
    width: 50%;
  }
}
@media (max-width: 1150px) {
  #spine .tab-wrap .content-wrap .section01 {
    border-radius: 16px;
  }
  #spine .tab-wrap .content-wrap .section02 .item .inner {
    border-radius: 8px 8px 0 0;
  }
}
@media (max-width: 719px) {
  #spine .tab-wrap .menu-wrap .item a {
    height: 50px;
    border-width: 4px;
  }
  #spine .tab-wrap .content-wrap .section01 .se-right img {
    max-width: 300px;
  }
  #spine .tab-wrap .content-wrap .section02 .item {
    padding: 0;
  }
  #spine .tab-wrap .content-wrap .section02 .item-top {
    margin: 0 0 10px;
  }
  #spine .tab-wrap .content-wrap .section02 .item-top .num {
    width: 50px;
    height: 50px;
    margin: 0 15px 0 0;
  }
  #spine .tab-wrap .content-wrap .section02 .item-bt {
    margin: 0 0 0 60px;
  }
  #spine .tab-wrap .content-wrap .section03 .item {
    margin: 0 -5px;
  }
  #spine .tab-wrap .content-wrap .section03 .item img {
    max-width: 50px;
  }
  #spine .tab-wrap .content-wrap .section03 .item h3 {
    margin: 0 0 10px;
  }
  #spine .tab-wrap .content-wrap .section03 .item p {
    padding: 0 10px;
  }
  #spine .tab-wrap .content-wrap .section03 .item p br {
    display: none;
  }
}
@media (max-width: 600px) {
  #spine .tab-wrap .content-wrap .section01 {
    border-radius: 14px;
  }
  #spine .tab-wrap .content-wrap .section02 .item .inner {
    border-radius: 7px 7px 0 0;
  }
}
@media (max-width: 450px) {
  #spine .tab-wrap .content-wrap .section01 {
    border-radius: 12px;
  }
  #spine .tab-wrap .content-wrap .section02 .item .inner {
    border-radius: 6px 6px 0 0;
  }
}
/* ---------------spine-section END--------------- */
/* ---------------bisusul-section START--------------- */
.bisusul-section.active .title-box .icon {
  opacity: 1;
}
.bisusul-section.active .title-box .section-eng {
  opacity: 1;
}
.bisusul-section.active .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.bisusul-section.active .title-box .section-desc {
  transform: translateY(0);
  opacity: 1;
}
.bisusul-section.active .item-wrap .item {
  transform: translateY(0);
  opacity: 1;
}
.bisusul-section .title-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.bisusul-section .title-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.bisusul-section .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.bisusul-section .title-box .section-desc {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}
.bisusul-section .item-wrap .item {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.bisusul-section .item-wrap .item:nth-of-type(1) {
  transition-delay: 0.9s;
}
.bisusul-section .item-wrap .item:nth-of-type(2) {
  transition-delay: 1.2s;
}
.bisusul-section .item-wrap .item:nth-of-type(3) {
  transition-delay: 1.5s;
}
.bisusul-section .mwidth2 {
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}
.bisusul-section img {
  max-width: 100%;
  line-height: 0;
  font-size: 0;
}

@media (max-width: 719px) {
  .bisusul-section .mwidth, .bisusul-section .mwidth2, .bisusul-section .mwidth3 {
    padding: 0 10px;
  }
}
#bisusul .item-wrap {
  display: flex;
}

#bisusul .item-wrap .item {
  width: 33.33%;
  padding: 0 8px;
  box-sizing: border-box;
}

#bisusul .item-wrap .item .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #122a88;
  height: 100%;
  box-sizing: border-box;
  background-color: #fbfbfb;
}

#bisusul .item-wrap .item-top {
  padding: 70px 50px 90px;
}

#bisusul .item-wrap .item-top .num {
  margin: 0 0 20px;
}

#bisusul .item-wrap .item-top .tit {
  margin: 0 0 20px;
}

#bisusul .item-wrap .item-top .desc {
  margin: 0 0 60px;
  text-align: justify;
  word-break: break-all;
  line-height: 1.4;
}

#bisusul .item-wrap .item-top ul {
  display: flex;
}

#bisusul .item-wrap .item-top ul li {
  position: relative;
  width: 25%;
  box-sizing: border-box;
  text-align: center;
}

#bisusul .item-wrap .item-top ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-color: #cbcbcb;
}

#bisusul .item-wrap .item-top ul li figure img {
  margin: 0 0 10px;
}

#bisusul .item-wrap .item-top ul li figcaption {
  color: #4f4f4f;
  line-height: 1.3;
}

@media (max-width: 1279px) {
  #bisusul .item-wrap {
    flex-wrap: wrap;
  }
  #bisusul .item-wrap .item {
    width: 100%;
  }
  #bisusul .item-wrap .item-bt img {
    width: 100%;
  }
}
@media (max-width: 719px) {
  #bisusul {
    padding: 100px 0;
  }
  #bisusul .item-wrap .item-top {
    padding: 40px 20px;
  }
  #bisusul .item-wrap .item-top .desc {
    margin: 0 0 30px;
  }
  #bisusul .item-wrap .item-top ul li figure img {
    width: 30px;
  }
}
/* ---------------bisusul-section END--------------- */
/* ---------------rehab-section START--------------- */
.rehab-section {
  box-sizing: border-box;
  width: 97.5%;
  margin-left: 1.25%;
  border-radius: 20px;
}
.rehab-section.active .title-box .icon {
  opacity: 1;
}
.rehab-section.active .title-box .section-eng {
  opacity: 1;
}
.rehab-section.active .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.rehab-section.active .title-box .section-desc {
  transform: translateY(0);
  opacity: 1;
}
.rehab-section.active .section01 ul li {
  transform: translateY(0);
  opacity: 1;
}
.rehab-section.active .section01 .box-wrap {
  opacity: 1;
}
.rehab-section.active .section02 {
  opacity: 1;
}
.rehab-section .title-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.rehab-section .title-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.rehab-section .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.rehab-section .title-box .section-desc {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}
.rehab-section .section01 ul li {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.rehab-section .section01 ul li:nth-of-type(1) {
  transition-delay: 0.9s;
}
.rehab-section .section01 ul li:nth-of-type(2) {
  transition-delay: 1.2s;
}
.rehab-section .section01 ul li:nth-of-type(3) {
  transition-delay: 1.5s;
}
.rehab-section .section01 ul li:nth-of-type(4) {
  transition-delay: 1.8s;
}
.rehab-section .section01 .box-wrap {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 2.1s;
}
.rehab-section .section02 {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 2.4s;
}
.rehab-section .rehab-inner {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
.rehab-section .mwidth {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}
.rehab-section img {
  max-width: 100%;
  line-height: 0;
  font-size: 0;
}

@media (max-width: 719px) {
  .rehab-section .mwidth, .rehab-section .mwidth2, .rehab-section .mwidth3 {
    padding: 0 10px;
  }
}
#rehab {
  border: 130px solid #122a88;
}

#rehab .section01 ul {
  display: flex;
  margin: 0 0 25px;
}

#rehab .section01 ul li {
  position: relative;
  width: 25%;
  padding: 20px 0;
  box-sizing: border-box;
  text-align: center;
}

#rehab .section01 ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-color: #c3baae;
}

#rehab .section01 ul li figure img {
  margin: 0 0 30px;
}

#rehab .section01 ul li figcaption h3 {
  margin: 0 0 20px;
}

#rehab .section01 ul li figcaption {
  line-height: 1.3;
}

#rehab .section01 .box-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#rehab .section01 .box-wrap .box-left figure {
  position: relative;
  left: -60px;
}

#rehab .section01 .box-wrap .box-right {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  text-align: center;
}

#rehab .section01 .box-wrap .box-right .txt-top {
  line-height: 1.2;
}

#rehab .section01 .box-wrap .box-right .txt-top .bg {
  background-color: #eff2ff;
}

#rehab .section01 .box-wrap .box-right .item-wrap {
  display: flex;
  margin: 30px -70px 0;
}

#rehab .section01 .box-wrap .box-right .item-wrap .item {
  width: 50%;
  margin: 0 -10px;
}

#rehab .section01 .box-wrap .box-right .item-wrap .item-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin: 0 0 30px;
  border-radius: 120px;
  line-height: 1.5;
}

#rehab .section01 .box-wrap .box-right .item-wrap .item-top b {
  font-weight: 700;
}

#rehab .section01 .box-wrap .box-right .item-wrap .item:nth-child(1) .item-top {
  background-color: #eff2ff;
}

#rehab .section01 .box-wrap .box-right .item-wrap .item:nth-child(2) .item-top {
  color: #fff;
}

#rehab .section01 .box-wrap .box-right .item-wrap .item-bt {
  line-height: 1.4;
}

#rehab .section02 {
  background-color: #fbfbfb;
}

#rehab .section02 .se-inner {
  max-width: 1460px;
  margin: auto;
  border-top: 1px solid #122a88;
}

#rehab .section02 h4 {
  margin: 0 0 10px;
  text-align: center;
}

#rehab .section02 .desc {
  margin: 0 0 55px;
  text-align: center;
}

#rehab .section02 .item-wrap {
  display: flex;
  flex-wrap: wrap;
}

#rehab .section02 .item-wrap .item {
  width: 50%;
  padding: 0 60px 50px;
  box-sizing: border-box;
}

#rehab .section02 .item-wrap .item .tit {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
}

#rehab .section02 .item-wrap .item .tit .num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-height: 64px;
  border-radius: 10px;
  margin: 0 25px 0 0;
}

#rehab .section02 .item-wrap .item .tit .txt {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

#rehab .section02 .item-wrap .item .cont-txt {
  margin: 25px 0 0 90px;
  line-height: 1.4;
}

@media screen and (max-width: 1350px) {
  .rehab-section {
    border-radius: 18px;
  }
  .rehab-section .rehab-inner {
    border-radius: 18px;
  }
  #rehab .section02 .item-wrap .item .tit .num {
    border-radius: 9px;
  }
}
@media (max-width: 1279px) {
  #rehab {
    border-width: 50px;
  }
  #rehab .section01 .box-wrap {
    flex-wrap: wrap;
  }
  #rehab .section01 .box-wrap .box-left {
    width: 100%;
  }
  #rehab .section01 .box-wrap .box-left figure {
    left: 0;
    text-align: center;
  }
  #rehab .section01 .box-wrap .box-left figure img {
    max-width: 300px;
  }
  #rehab .section01 .box-wrap .box-right {
    width: 100%;
  }
  #rehab .section01 .box-wrap .box-right .item-wrap {
    margin: 30px -40px 0 0;
  }
  #rehab .section02 .item-wrap .item {
    width: 100%;
  }
}
@media screen and (max-width: 1150px) {
  .rehab-section {
    border-radius: 16px;
  }
  .rehab-section .rehab-inner {
    border-radius: 16px;
  }
  #rehab .section02 .item-wrap .item .tit .num {
    border-radius: 8px;
  }
}
@media (max-width: 719px) {
  #rehab {
    border-width: 20px;
  }
  #rehab .section01 ul {
    flex-wrap: wrap;
  }
  #rehab .section01 ul li {
    width: 50%;
  }
  #rehab .section01 ul li figure img {
    max-width: 50px;
    margin: 0 0 10px;
  }
  #rehab .section01 ul li:nth-child(2)::after {
    display: none;
  }
  #rehab .section01 .box-wrap .box-left figure img {
    max-width: 220px;
  }
  #rehab .section01 .box-wrap .box-right .item-wrap {
    padding: 0 10px;
  }
  #rehab .section01 .box-wrap .box-right .item-wrap .item-top {
    height: 90px;
    padding: 0 10px;
  }
  #rehab .section01 .box-wrap .box-right .item-wrap .item-bt {
    padding: 0 10px;
  }
  #rehab .section02 .item-wrap .item {
    padding: 0 10px 40px;
  }
  #rehab .section02 .item-wrap .item .tit .num {
    width: 50px;
    min-height: 50px;
    margin: 0 15px 0 0;
  }
  #rehab .section02 .item-wrap .item .cont-txt {
    margin: 10px 0 0 60px;
  }
}
@media screen and (max-width: 600px) {
  .rehab-section {
    border-radius: 14px;
  }
  .rehab-section .rehab-inner {
    border-radius: 14px;
  }
  #rehab .section02 .item-wrap .item .tit .num {
    border-radius: 7px;
  }
}
@media screen and (max-width: 450px) {
  .rehab-section {
    border-radius: 12px;
  }
  .rehab-section .rehab-inner {
    border-radius: 12px;
  }
  #rehab .section02 .item-wrap .item .tit .num {
    border-radius: 6px;
  }
}
/* ---------------rehab-section END--------------- */
/* ---------------equipment-section START--------------- */
.equipment-section.active .title-box .icon {
  opacity: 1;
}
.equipment-section.active .title-box .section-eng {
  opacity: 1;
}
.equipment-section.active .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.equipment-section.active .title-box .section-desc {
  transform: translateY(0);
  opacity: 1;
}
.equipment-section.active .item-wrap .item {
  transform: translateY(0);
  opacity: 1;
}
.equipment-section .title-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.equipment-section .title-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.equipment-section .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.equipment-section .title-box .section-desc {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}
.equipment-section .item-wrap .item {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.equipment-section .item-wrap .item:nth-of-type(1) {
  transition-delay: 0.9s;
}
.equipment-section .item-wrap .item:nth-of-type(2) {
  transition-delay: 1.2s;
}
.equipment-section .item-wrap .item:nth-of-type(3) {
  transition-delay: 1.5s;
}
.equipment-section .item-wrap .item:nth-of-type(4) {
  transition-delay: 1.8s;
}
.equipment-section .item-wrap .item:nth-of-type(5) {
  transition-delay: 2.1s;
}
.equipment-section .item-wrap .item:nth-of-type(6) {
  transition-delay: 2.4s;
}
.equipment-section .mwidth {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}
.equipment-section img {
  max-width: 100%;
  line-height: 0;
  font-size: 0;
}

@media (max-width: 719px) {
  .equipment-section .mwidth, .equipment-section .mwidth2, .equipment-section .mwidth3 {
    padding: 0 10px;
  }
}
#equipment .item-wrap {
  display: flex;
  flex-wrap: wrap;
}

#equipment .item-wrap .item {
  width: 33.33%;
  padding: 0 12px 24px;
  box-sizing: border-box;
}

#equipment .item-wrap .item .inner {
  padding: 25px 25px 40px;
  height: 100%;
  box-sizing: border-box;
  background-color: #f5f5f5;
  border-radius: 10px;
}

#equipment .item-wrap .item figure {
  position: relative;
  margin: 0 0 35px;
}

#equipment .item-wrap .item figcaption {
  position: absolute;
  left: -25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  width: 104px;
  height: 104px;
  padding: 0 0 0 13px;
  box-sizing: border-box;
  border-radius: 0 10px 10px 0;
}
#equipment .item-wrap .item figcaption div {
  line-height: 1.2;
}

#equipment .item-wrap .item h3 {
  margin: 0 0 10px;
  box-sizing: border-box;
  padding: 0 13px;
}

#equipment .item-wrap .item p {
  text-align: justify;
  word-break: break-all;
  box-sizing: border-box;
  padding: 0 13px;
  line-height: 1.4;
}

@media screen and (max-width: 1350px) {
  #equipment .item-wrap .item .inner {
    border-radius: 9px;
  }
  #equipment .item-wrap .item figcaption {
    border-radius: 0 9px 9px 0;
  }
}
@media (max-width: 1279px) {
  #equipment .item-wrap .item {
    padding: 0 5px 10px;
  }
  #equipment .item-wrap .item .inner {
    padding: 15px 15px 40px;
  }
  #equipment .item-wrap .item figure img {
    width: 100%;
  }
  #equipment .item-wrap .item h3 {
    padding: 0 7px;
  }
  #equipment .item-wrap .item p {
    padding: 0 7px;
  }
}
@media screen and (max-width: 1150px) {
  #equipment .item-wrap .item .inner {
    border-radius: 8px;
  }
  #equipment .item-wrap .item figcaption {
    border-radius: 0 8px 8px 0;
  }
}
@media (max-width: 719px) {
  #equipment .item-wrap .item {
    width: 50%;
  }
  #equipment .item-wrap .item .inner {
    padding: 10px 10px 20px;
  }
  #equipment .item-wrap .item h3 {
    padding: 0 5px;
  }
  #equipment .item-wrap .item p {
    padding: 0 5px;
  }
  #equipment .item-wrap .item figcaption {
    bottom: 10px;
    left: -10px;
    width: 84px;
    height: 84px;
  }
}
@media screen and (max-width: 600px) {
  #equipment .item-wrap .item .inner {
    border-radius: 7px;
  }
  #equipment .item-wrap .item figcaption {
    border-radius: 0 7px 7px 0;
  }
}
@media screen and (max-width: 450px) {
  #equipment .item-wrap .item .inner {
    border-radius: 6px;
  }
  #equipment .item-wrap .item figcaption {
    border-radius: 0 6px 6px 0;
  }
}
/* ---------------equipment-section END--------------- */
/* ---------------tour-section START--------------- */
.tour-section {
  box-sizing: border-box;
  width: 97.5%;
  margin-left: 1.25%;
  border-radius: 20px;
}
.tour-section.active .title-box .icon {
  opacity: 1;
}
.tour-section.active .title-box .section-eng {
  opacity: 1;
}
.tour-section.active .title-box .section-title {
  transform: translateY(0);
  opacity: 1;
}
.tour-section.active .title-box .section-desc {
  transform: translateY(0);
  opacity: 1;
}
.tour-section.active .slide-wrap {
  opacity: 1;
}
.tour-section .title-box .icon {
  opacity: 0;
  transition: opacity 1s;
}
.tour-section .title-box .section-eng {
  opacity: 0;
  transition: opacity 1s;
}
.tour-section .title-box .section-title {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
.tour-section .title-box .section-desc {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
  transition-delay: 0.6s;
}
.tour-section .slide-wrap {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.9s;
}
.tour-section .mwidth2 {
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}
.tour-section img {
  max-width: 100%;
  line-height: 0;
  font-size: 0;
}

@media (max-width: 719px) {
  .tour-section .mwidth, .tour-section .mwidth2, .tour-section .mwidth3 {
    padding: 0 10px;
  }
}
#tour {
  background: url("/assets/img/main/se11_bg.jpg") no-repeat center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#tour .slide-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1176px;
}

#tour .img-btn {
  padding: 20px 0 0;
  margin: 0 auto;
  font-size: 0;
}

#tour .img-btn ul {
  margin: 0 -1px;
}

#tour .img-btn li {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  box-sizing: border-box;
  padding: 0 1px 2px;
}

#tour .img-btn li img {
  cursor: pointer;
  border-radius: 10px;
}

#gallery {
  text-align: center;
  position: relative;
  max-width: 1382px;
}
#gallery img {
  display: block;
  border-radius: 20px;
}

#gallery .arrow {
  position: absolute;
  top: 50%;
  z-index: 40;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center center;
}

#gallery .arrow-prev {
  left: -150px;
  background-image: url("/assets/img/main/se11_btn_prev.png");
}

#gallery .arrow-next {
  right: -150px;
  background-image: url("/assets/img/main/se11_btn_next.png");
}

@media (max-width: 1500px) {
  #gallery .arrow-prev {
    left: -5%;
  }
  #gallery .arrow-next {
    right: -5%;
  }
}
@media (max-width: 1350px) {
  .tour-section {
    border-radius: 18px;
  }
  #tour .img-btn li img {
    border-radius: 9px;
  }
  #gallery img {
    border-radius: 18px;
  }
  #gallery .arrow {
    width: 90px;
    height: 90px;
    margin-top: -45px;
  }
  #gallery .arrow-prev {
    left: 2.5%;
  }
  #gallery .arrow-next {
    right: 2.5%;
  }
}
@media (max-width: 1150px) {
  .tour-section {
    border-radius: 16px;
  }
  #tour .img-btn li img {
    border-radius: 8px;
  }
  #gallery img {
    border-radius: 16px;
  }
  #gallery .arrow {
    width: 80px;
    height: 80px;
    margin-top: -40px;
  }
}
@media (max-width: 719px) {
  #tour .img-btn ul {
    margin: 0 -2px;
  }
  #tour .img-btn li {
    padding: 0 2px 4px;
  }
}
@media (max-width: 600px) {
  .tour-section {
    border-radius: 14px;
  }
  #tour .img-btn li img {
    border-radius: 7px;
  }
  #gallery img {
    border-radius: 14px;
  }
  #gallery .arrow {
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
}
@media (max-width: 450px) {
  .tour-section {
    border-radius: 12px;
  }
  #tour .img-btn li img {
    border-radius: 6px;
  }
  #gallery img {
    border-radius: 12px;
  }
  #gallery .arrow {
    width: 60px;
    height: 60px;
    margin-top: -30px;
  }
}
/* ---------------tour-section END--------------- */
/* ---------------contact-section START--------------- */
.contact-section {
  width: 97.5%;
  margin-left: 1.25%;
}
.contact-section.active .contact-wrap .map-box {
  opacity: 1;
}
.contact-section.active .contact-wrap .text-box {
  opacity: 1;
}
.contact-section .contact-wrap {
  display: flex;
  align-items: stretch;
}
.contact-section .contact-wrap .map-box {
  flex-shrink: 0;
  width: 48%;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #eee;
  opacity: 0;
  transition: opacity 1s;
}
.contact-section .contact-wrap .map-box iframe {
  width: 100% !important;
  height: 100% !important;
}
.contact-section .contact-wrap .map-box > div {
  width: 100% !important;
  height: 100% !important;
}
.contact-section .contact-wrap .map-box > div svg {
  display: none !important;
}
.contact-section .contact-wrap .map-box > div .wrap_map {
  width: 100% !important;
  height: 100% !important;
}
.contact-section .contact-wrap .map-box > div .wrap_controllers {
  display: none !important;
}
.contact-section .contact-wrap .map-box > div .cont {
  display: none !important;
}
.contact-section .contact-wrap .text-box {
  box-sizing: border-box;
  padding: 50px;
  padding-right: calc((100% - 1400px) / 2);
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.contact-section .contact-wrap .text-box .contact-desc {
  margin-top: 25px;
  line-height: 1.2;
}
.contact-section .contact-wrap .text-box .contact-link-list {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.contact-section .contact-wrap .text-box .contact-link-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 5px;
  width: 170px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #f6f6f6;
  background-color: #fbfcff;
  transition: background-color 0.3s;
}
.contact-section .contact-wrap .text-box .info-box {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 40px 0;
}
.contact-section .contact-wrap .text-box .info-box:not(:nth-of-type(1)) {
  border-top: 1px solid #1c1c1c;
  padding-bottom: unset;
}
.contact-section .contact-wrap .text-box .info-box .info-left {
  width: 180px;
}
.contact-section .contact-wrap .text-box .info-box .info-left .title {
  margin-top: 10px;
}
.contact-section .contact-wrap .text-box .info-box .info-left .eng {
  white-space: nowrap;
}
.contact-section .contact-wrap .text-box .info-box .info-right {
  box-sizing: border-box;
  padding-top: 5%;
}
.contact-section .contact-wrap .text-box .info-box .info-right .info-list li {
  display: flex;
}
.contact-section .contact-wrap .text-box .info-box .info-right .info-list li:not(:nth-of-type(1)) {
  margin-top: 15px;
}
.contact-section .contact-wrap .text-box .info-box .info-right .info-list li .tit {
  flex-shrink: 0;
  width: 105px;
}
.contact-section .contact-wrap .text-box .info-box .info-right .info-list li .text {
  line-height: 1.4;
}
.contact-section .contact-wrap .text-box .info-box .info-right .info-txt {
  line-height: 1.4;
}
.contact-section .contact-wrap .text-box .info-box .info-right .info-txt:nth-of-type(1) {
  margin-top: 15px;
}

@media screen and (min-width: 991.1px) {
  .contact-section .contact-wrap .text-box .contact-link-list li a:hover {
    background-color: rgba(18, 42, 136, 0.15);
  }
}
@media screen and (max-width: 1417px) {
  .contact-section .contact-wrap .text-box {
    padding-right: unset;
    padding: 50px 2.5% 50px 50px;
  }
}
@media screen and (max-width: 1350px) {
  .contact-section .contact-wrap .map-box {
    border-radius: 18px;
  }
  .contact-section .contact-wrap .text-box {
    padding: 45px 2.5% 45px 45px;
  }
  .contact-section .contact-wrap .text-box .contact-desc {
    margin-top: 23px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list {
    gap: 9px;
    margin-top: 13px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list li a {
    gap: 13px;
    width: 155px;
    height: 36px;
  }
  .contact-section .contact-wrap .text-box .info-box {
    padding: 36px 0;
  }
  .contact-section .contact-wrap .text-box .info-box .info-left {
    width: 170px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-left .title {
    margin-top: 9px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li:not(:nth-of-type(1)) {
    margin-top: 13px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li .tit {
    width: 95px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-txt:nth-of-type(1) {
    margin-top: 13px;
  }
}
@media screen and (max-width: 1150px) {
  .contact-section .contact-wrap .map-box {
    border-radius: 16px;
  }
  .contact-section .contact-wrap .text-box {
    padding: 40px 2.5% 40px 40px;
  }
  .contact-section .contact-wrap .text-box .contact-desc {
    margin-top: 21px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list {
    gap: 8px;
    margin-top: 11px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list li a {
    gap: 11px;
    width: 140px;
    height: 32px;
  }
  .contact-section .contact-wrap .text-box .info-box {
    padding: 32px 0;
  }
  .contact-section .contact-wrap .text-box .info-box .info-left {
    width: 160px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-left .title {
    margin-top: 8px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li:not(:nth-of-type(1)) {
    margin-top: 11px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li .tit {
    width: 85px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-txt:nth-of-type(1) {
    margin-top: 11px;
  }
}
@media screen and (max-width: 991px) {
  .contact-section .contact-wrap {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .contact-section .contact-wrap .map-box {
    width: 100%;
    height: 50vw;
  }
  .contact-section .contact-wrap .text-box {
    width: 100%;
    padding: unset;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .contact-section .contact-wrap .map-box {
    border-radius: 14px;
  }
  .contact-section .contact-wrap .text-box {
    padding-bottom: 35px;
  }
  .contact-section .contact-wrap .text-box .contact-desc {
    margin-top: 19px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list {
    gap: 7px;
    margin-top: 9px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list li {
    width: calc((100% - 14px) / 3);
  }
  .contact-section .contact-wrap .text-box .contact-link-list li a {
    gap: 9px;
    width: 100%;
    height: 28px;
  }
  .contact-section .contact-wrap .text-box .info-box {
    padding: 28px 0;
    flex-wrap: wrap;
  }
  .contact-section .contact-wrap .text-box .info-box .info-left {
    width: 100%;
  }
  .contact-section .contact-wrap .text-box .info-box .info-left .title {
    margin-top: 7px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right {
    padding-top: 14px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li:not(:nth-of-type(1)) {
    margin-top: 9px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li .tit {
    width: 80px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-txt:nth-of-type(1) {
    margin-top: 9px;
  }
}
@media screen and (max-width: 450px) {
  .contact-section .contact-wrap .map-box {
    border-radius: 12px;
  }
  .contact-section .contact-wrap .text-box {
    padding-bottom: 30px;
  }
  .contact-section .contact-wrap .text-box .contact-desc {
    margin-top: 17px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list {
    gap: 6px;
    margin-top: 7px;
  }
  .contact-section .contact-wrap .text-box .contact-link-list li {
    width: calc((100% - 12px) / 3);
  }
  .contact-section .contact-wrap .text-box .contact-link-list li a {
    gap: 8px;
  }
  .contact-section .contact-wrap .text-box .info-box {
    padding: 24px 0;
  }
  .contact-section .contact-wrap .text-box .info-box .info-left .title {
    margin-top: 6px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right {
    padding-top: 12px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li:not(:nth-of-type(1)) {
    margin-top: 7px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-list li .tit {
    width: 75px;
  }
  .contact-section .contact-wrap .text-box .info-box .info-right .info-txt:nth-of-type(1) {
    margin-top: 7px;
  }
}
/* ---------------contact-section END--------------- */