/* sub-top-banner */
.sub-top-banner {
  width: 95%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px auto 0;
  justify-content: center;
}
.sub-top-banner:has(.breadcrumb) {
  overflow: visible;
}
.sub-top-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}

.sub-top-banner-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: url("../img/sub-top-banner1.png?ver=260408") no-repeat center
    center / cover;
  z-index: 0;
  animation: movingBackground 30s ease-in-out infinite;
}
.sub2 .sub-top-banner-overlay::before {
  background: url("../img/sub-top-banner2.png") no-repeat center center / cover;
}
.sub3 .sub-top-banner-overlay::before {
  background: url("../img/sub-top-banner3.png") no-repeat center center / cover;
}
.sub4 .sub-top-banner-overlay::before {
  background: url("../img/sub-top-banner4.png") no-repeat center center / cover;
}
.sub5 .sub-top-banner-overlay::before {
  background: url("../img/sub-top-banner5.png") no-repeat center center / cover;
}
.sub6 .sub-top-banner-overlay::before {
  background: url("../img/sub-top-banner6.png") no-repeat center center / cover;
}

@keyframes movingBackground {
  0% {
    transform: translate(-10%, -10%) scale(1.1);
  }
  50% {
    transform: translate(0%, 0%) scale(1.15);
  }
  100% {
    transform: translate(-10%, -10%) scale(1.1);
  }
}

.sub-top-banner-content {
  position: relative;
  z-index: 2;
  padding: 95px 0;
  max-width: 1280px;
  width: 95%;
  color: #555;
  margin: 0 auto;
}
.sub-top-banner-subtitle {
  font-size: 40px;
  font-weight: 700;
}
.breadcrumb {
  margin-bottom: 16px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #757575;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 20px;
  border-radius: 50%;
  background: #757575;
  flex-shrink: 0;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}
.breadcrumb__home {
  line-height: 0;
}
.breadcrumb__home img {
  display: block;
  height: 1.25em;
  width: auto;
}
.breadcrumb__dropdown {
  position: relative;
  z-index: 1;
}
.breadcrumb__dropdown.is-open {
  z-index: 100;
}
.breadcrumb__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  color: #757575;
  cursor: pointer;
  border: none;
  background: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.breadcrumb__dropdown-ico {
  width: 28px;
  height: 28px;
}
.breadcrumb__dropdown-ico img {
  display: block;
  height: auto;
  width: 100%;
  transition: transform 0.2s ease;
}
.breadcrumb__dropdown.is-open .breadcrumb__dropdown-ico img {
  transform: rotate(180deg);
}
.breadcrumb__dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0%;
  transform: translateX(50%);
  min-width: 200px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 5px 0.5px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 100;
}
.breadcrumb__dropdown-panel[hidden] {
  display: none;
}
.breadcrumb__dropdown-list li.active a {
  font-weight: 700;
  background: #bbb;
  color: #fff;
}
.breadcrumb__dropdown-list {
  list-style: none;
  margin: 0;
  text-align: center;
}
.breadcrumb__dropdown-list a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.breadcrumb__dropdown-list a:hover {
  background: #f1f1f1;
  color: #555;
}
/* sub-title */
.sub1-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 80px;
}
.sub1-title i {
  font-size: 20px;
}
.sub1-title h3 {
  font-size: 52px;
  font-weight: 700;
}
/* m1_1 */
.sub1-content {
  max-width: 1440px;
  width: 95%;
  margin: 0 auto;
  padding: 80px;
  border-radius: 40px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
}
.sub1-content2,
.sub1-content4 {
  flex-direction: row-reverse;
}
.sub1-content1 {
  background: #f2f6fc;
}
.sub1-content3 {
  background: #f2faf2;
}
.sub1-content1::before,
.sub1-content3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 120px;
  aspect-ratio: 1/1;
  display: block;
  animation: rotate 7s ease-in-out infinite;
}
@keyframes rotate {
  0% {
    transform: translate(50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(50%, -50%) rotate(180deg);
  }
}
.sub1-content1::before {
  background: url("../img/sub1-content1-bg-1.png") no-repeat center center /
    cover;
}
.sub1-content3::before {
  background: url("../img/sub1-content1-bg-3.png") no-repeat center center /
    cover;
}
.sub1-content .img-wrap {
  width: 100%;
  line-height: 0;
  border-radius: 30px;
  overflow: hidden;
}
.sub1-content .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub1-content .text-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sub1-content .text-wrap .num {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 30px;
}
.sub1-content .text-wrap h4 {
  font-size: 30px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
.sub1-content .text-wrap h4 b {
  font-size: 1.33em;
  font-weight: 700;
  display: block;
}
.sub1-content .text-wrap p {
  font-size: 22px;
  line-height: 1.5;
  opacity: 0.6;
}
/* m1_2 */
.m1_2 {
  position: relative;
}
.m1_2-marquee {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  line-height: 1.4;
  color: #eee;
}
.m1_2-marquee__track {
  display: flex;
  flex-direction: column;
  width: max-content;
  animation: m1_2MarqueeY 350s linear infinite;
}
.m1_2-marquee__segment {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-size: min(140px, 11vw);
  font-weight: 900;
  text-transform: uppercase;
}
@keyframes m1_2MarqueeY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .m1_2-marquee__track {
    animation: none;
  }
}
/* 의료진 섹션 */
.m1_2 {
  position: relative;
}
.m1_2 .content_inner {
  position: relative;
  z-index: 1;
}
.doctor-wrap {
  display: flex;
  gap: 40px;
  position: relative;
}
.doctor-wrap:not(:last-of-type) {
  margin-bottom: 80px;
}
.doctor-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: calc(100% - 120px);
  background: #ecf1fa;
  border-radius: 300px;
}
.doctor-wrap-im::before {
  background: #f2faf3;
}
.doctor-wrap-im .doctor-name span {
  color: #144d00;
}
.doctor-wrap-im .doctor-comment {
  color: #008005;
}
.doctor-img-wrap {
  flex: 1;
  width: 100%;
  align-self: stretch;
  max-width: 400px;
  line-height: 0;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.doctor-img-wrap img {
  width: 100%;
}
.doctor-info-wrap {
  flex: 1.5;
  width: 100%;
  position: relative;
}
.doctor-top {
  display: flex;
  gap: 60px;
  align-items: flex-end;
}
.doctor-name {
  display: flex;
  flex-direction: column;
}
.doctor-name i {
  color: #555;
  font-size: 24px;
  font-weight: 500;
}
.doctor-name span {
  color: #00316e;
  font-size: 40px;
}
.doctor-comment {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #003880;
  font-size: 16px;
  line-height: 1.3;
}
.doctor-comment img {
  width: 42px;
  flex-shrink: 0;
  line-height: 0;
}
.doctor-desc {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  font-size: 16px;
  opacity: 0.8;
  padding-bottom: 40px;
  min-height: 320px;
}
.doctor-desc-inner {
  min-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.doctor-desc-inner ul {
  display: flex;
  flex-direction: column;
}
.doctor-desc-inner ul li {
  position: relative;
  padding-left: 10px;
}
.doctor-desc-inner ul li::before {
  content: "ㆍ";
  position: absolute;
  left: 0;
  top: 0;
}
/* m1_3 */
/* 보유장비 */
.m1_3 {
  background: url("../img/m13-1-bg.png") no-repeat 50% 50% / cover;
  background-attachment: fixed;
}
.item_wrap {
  display: flex;
  gap: 20px;
}
.item_wrap:not(:last-of-type) {
  margin-bottom: 80px;
}
.item_left {
  background: url("../img/m13-2-bg.png") no-repeat 50% 50% / cover;
  border-radius: 0 30px 30px 0;
  padding: 95px 0;
}
.item_wrap_im .item_left {
  background: url("../img/m13-3-bg.png") no-repeat 50% 50% / cover;
}
.item_left .inner {
  margin-left: calc(calc(100vw - 1280px) / 2);
  color: #fff;
  min-width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 50px;
}

.item_left h3 {
  font-size: 40px;
  font-weight: 700;
}

.item_left i {
  margin-top: 20px;
  font-size: 18px;
  display: block;
  font-weight: 400;
}

.arr_wrap {
  margin-top: 60px;
  display: flex;
  gap: 10px;
}

.arr_wrap img {
  width: 60px;
  cursor: pointer;
  transition: 0.3s;
  transition-delay: 0s;
}

.arr_wrap img:nth-of-type(1):hover {
  transform: translateX(-7px);
  transition-delay: 0.3s;
}

.arr_wrap img:nth-of-type(2):hover {
  transform: translateX(7px);
  transition-delay: 0.3s;
}

.c6_swiper_wrap {
  overflow: initial;
  position: relative;
  width: 100%;
  padding-bottom: 50px;
}

.c6_swiper_wrap .swiper-wrapper .swiper-slide {
  max-width: 450px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  border-radius: 30px;
  /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15); */
  text-align: center;
}

.c6_name {
  color: #00316e;
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0 5px;
}
.item_wrap_im .c6_name {
  color: #144d00;
}

.c6_name + i {
  font-size: 18px;
  letter-spacing: -0.06em;
  text-align: center;
  color: rgba(28, 28, 27, 0.7);
}

.item_pagination.swiper-pagination-progressbar {
  position: relative;
  margin-top: 70px;
  background: rgba(71, 107, 178, 0.2);
}

.item_pagination.swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #223974;
}

/* m1_4: 둘러보기 갤러리 슬라이더 */
.m1_4 {
  background: #fff;
  position: relative;
}
.m1_4-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.m1_4-marquee__track {
  display: flex;
  width: max-content;
  animation: m1_4Marquee 120s linear infinite;
}
.m1_4-marquee__line {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
  font-size: min(140px, 11vw);
  font-weight: 900;
  line-height: 1;
  opacity: 0.4;
  line-height: 0.85;
}
.m1_4-marquee__os {
  color: #e6eef9;
}
.m1_4-marquee__im {
  color: #e5f0e5;
}
@keyframes m1_4Marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .m1_4-marquee__track {
    animation: none;
  }
}
/* m1_5 */
.m1_5 {
  background: #fff;
  position: relative;
}
.m1_5 p {
  font-size: 18px;
  line-height: 1.7;
}
.m1_5 .m1_4-marquee__line {
  color: #eee;
  text-transform: uppercase;
}
/* m2_1 */
.sub2-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}
.sub2-title h3 {
  font-size: 52px;
  font-weight: 700;
}
.sub2-title.os h3 {
  color: #004eb1;
}
.sub2-title.im h3 {
  color: #358739;
}
.sub2-title h3 strong {
  font-weight: 400;
}
.sub2-title em {
  font-size: 24px;
  font-weight: 400;
  display: inline-flex;
  padding: 8px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.os.sub2-title em {
  background: #e6eef9;
  color: #00316e;
}
.im.sub2-title em {
  background: #e6f5e6;
  color: #144d00;
}
.sub2-title p {
  line-height: 1.5;
  opacity: 0.7;
}
.scale-img-wrap {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  line-height: 0;
  border-radius: 30px;
  height: min(52vw, 620px);
  overflow: hidden;
  transition: all 0.9s ease;
}
.scale-img-wrap.is-full {
  max-width: 100%;
  border-radius: 0;
  width: 100%;
}
.scale-img {
  height: 100%;
}
.scale-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* why-wrap */
.why-title {
  color: #00316e;
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}
.why-content {
  display: flex;
  gap: 20px;
}
.why-content li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(230, 238, 249, 0.9);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.why-content li:nth-of-type(2n) {
  background: #eef1f4;
}

.why-img-wrap {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  line-height: 0;
  border-radius: 18px;
  overflow: hidden;
  transition: border-radius 0.65s ease;
}
.why-img-wrap.is-inview {
  border-radius: 50%;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-text-wrap h5 {
  color: #00316e;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.why-text-wrap h5 i {
  font-weight: 500;
}
.why-text-wrap .line {
  width: 60px;
  height: 1px;
  background: #00316e;
  opacity: 0.4;
  margin: 12px auto;
}
.why-text-wrap p {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.7;
}
/* symptom-wrap */
.symptom-wrap {
  background: url("../img/symptom-bg.png") no-repeat center center / cover;
  background-attachment: fixed;
}
.symptom-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.symptom-content li {
  display: flex;
  border-radius: 0 50px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px 2px rgba(4, 40, 85, 0.18);
}
.symptom-img-wrap {
  width: 100%;
  line-height: 0;
}
.symptom-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.symptom-text-wrap {
  background: url("../img/symptom-text-bg.png") no-repeat top right / contain;
  width: 100%;
  padding: 70px 30px;
}
.symptom-text-wrap h5 {
  color: #0053bc;
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #0053bc;
}
.symptom-text-wrap h5 i {
  font-weight: 500;
}
.symptom-text-wrap p {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.9;
}
/* system-wrap */
.system-wrap {
  background: url("../img/system-bg.png") no-repeat center center / cover;
  background-attachment: fixed;
}
.system-title {
  text-align: center;
}
.system-title i {
  font-size: 20px;
}
.system-title * {
  color: #fff !important;
}
.system-content {
  display: flex;
  position: relative;
}
.system-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 2px;
  background: #0070ff;
  z-index: 1;
}
.system-content li {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 40px 30px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #116bdd 30%, #004eb2 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  margin-right: -15px;
  aspect-ratio: 1/1;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}
.system-content li:nth-of-type(2n) {
  background: radial-gradient(50% 50% at 50% 50%, #4591f3 30%, #186fdd 100%);
}
.system-content li:last-of-type {
  margin-right: 0;
}
.system-content-icon-wrap {
  width: 45%;
  max-width: 85px;
  aspect-ratio: 1/1;
  line-height: 0;
  overflow: hidden;
}
.system-content-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.system-content li em {
  font-size: 0.85em;
}
/* menu4_1 */
.m4_1 {
  background: url("../img/m41-1-bg.png") no-repeat bottom right / contain;
}
.width-img-wrap {
  max-width: 0;
  margin: 0 auto;
  line-height: 0;
  height: min(40vw, 520px);
  overflow: hidden;
  transition: all 0.9s ease;
  border-radius: 0px;
}
.width-img-wrap.is-full {
  border-radius: 30px;
  max-width: 100%;
  width: 100%;
}
.width-img {
  height: 100%;
}
.width-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* apply-wrap */
.apply-wrap {
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 30%);
  position: relative;
}
.apply-text-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  overflow: hidden;
  line-height: 0.85;
}
.apply-text-track {
  display: flex;
  width: max-content;
  gap: 60px;
  white-space: nowrap;
  animation: applyTextTrack 126s linear infinite;
}
.apply-text-item {
  text-transform: uppercase;
  flex-shrink: 0;
  font-size: min(140px, 11vw);
  font-weight: 900;
  color: #004eb1;
  opacity: 0.05;
}
@keyframes applyTextTrack {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 30px));
  }
}
.apply-wrap .content_inner {
  position: relative;
  z-index: 2;
}
/*  */
.apply-content {
  display: flex;
  gap: 20px;
}
.apply-content li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: #757575;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}
.apply-content li i {
  font-weight: 400;
  font-size: 0.9em;
}
/* special-wrap */
.special-wrap {
  background: url("../img/m41-special-bg.png") no-repeat center center / cover;
  background-attachment: fixed;
  color: #fff;
}
.special-content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.special-img-wrap {
  width: 100%;
  max-width: 580px;
  line-height: 0;
  border-radius: 30px;
  overflow: hidden;
}
.special-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-text-wrap {
  width: 100%;
}
.special-text-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
}
.special-text-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.special-text-list li:before {
  content: "";
  width: 1.3em;
  aspect-ratio: 1/1;
  background: url("../img/check-blue.png") no-repeat center center / contain;
  flex-shrink: 0;
  line-height: 0;
}
/* m5_1 */
.m5_1 {
  background: linear-gradient(180deg, #fff 21.63%, #f6f6f6 100%);
}
/* treatment-wrap */
.treatment-wrap {
  background: linear-gradient(
    270deg,
    rgba(245, 245, 245, 0.7) 0%,
    rgba(251, 251, 251, 0.7) 100%
  );
  display: flex;
}
.treatment-left {
  background: url("../img/m51-treatment-left-bg.png") no-repeat center center /
    cover;
  border-radius: 0 30px 30px 0;
  width: 30%;
}
.treatment-left .inner {
  width: 100%;
  color: #fff;
  margin-left: auto;
  max-width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 140px;
  padding-top: 140px;
  padding-bottom: 140px;
}
.treatment-wrap .why-title {
  text-align: left;
  text-wrap: nowrap;
}
.treatment-right {
  width: calc(70% + 100px);
  padding-top: 140px;
  padding-bottom: 140px;
  margin-left: -100px;
}
.treatment-swiper-wrap {
  width: 100%;
}
.treatment-swiper-wrap .swiper-wrapper {
  padding: 10px;
}
.treatment-swiper-wrap .swiper-slide {
  box-sizing: border-box;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  line-height: 0;
}
.treatment-swiper-wrap .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.treatment-text {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background: #fff;
  font-size: 24px;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.8);
  text-align: center;
  padding: 16px 50px;
  line-height: 1;
  border-radius: 0 40px 0 0;
}
.treatment-arr-wrap {
  display: flex;
  gap: 20px;
}
.treatment-arr-wrap img {
  width: 50px;
  cursor: pointer;
  transition: 0.3s;
  transition-delay: 0s;
}
.treatment-arr-wrap img:nth-of-type(1):hover {
  transform: translateX(-10px);
  transition-delay: 0.3s;
}
.treatment-arr-wrap img:nth-of-type(2):hover {
  transform: translateX(7px);
  transition-delay: 0.3s;
}
.special-wrap.sub5 {
  background: url("../img/m52-special-bg.png") no-repeat center center / cover;
}
/* sub6 */
.sub6 .why-title {
  color: #144d00;
}
.why-list-wrap {
  display: flex;
  gap: 42px;
}

.why-list-img-wrap {
  width: 45%;
  line-height: 0;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  position: relative;
}
.why-list-img-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-list-text-wrap {
  width: 55%;
  padding: 80px 0;
}
.why-list-text-list {
  margin-right: calc(calc(100vw - 1280px) / 2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-list-text-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.3;
  color: rgba(51, 51, 51, 0.8);
  font-size: 22px;
}
.why-list-text-list li:before {
  content: "";
  width: 1.3em;
  aspect-ratio: 1/1;
  background: url("../img/check-green.png") no-repeat center center / contain;
  flex-shrink: 0;
  line-height: 0;
}
.why-list-text-list li b {
  display: block;
}
.why-list-text-list li b i {
  font-weight: 500;
}
.why-list-text-list li i {
  opacity: 0.9;
}
.sub6.symptom-wrap {
  background: url("../img/m61-symptom-bg.png") no-repeat center center / cover;
  background-attachment: fixed;
}
.sub6 .symptom-text-wrap {
  background: url("../img/m61-symptom-text-bg.png") no-repeat top left / contain;
  width: 100%;
}
.sub6 .symptom-text-wrap h5 {
  color: #358739;
  border-bottom: 1.5px solid #358739;
}
.sub6.special-wrap {
  background: url("../img/m61-special-bg.png") no-repeat center center / cover;
  background-attachment: fixed;
}
.sub6 .special-text-list li:before {
  background: url(../img/check-sky-green.png) no-repeat center center / contain;
}
.sub6.sub7.special-wrap {
  background: url("../img/m71-special-bg.png") no-repeat center center / cover;
  background-attachment: fixed;
}
.sub6.sub7.special-wrap li b {
  display: block;
}
.sub6.sub7.special-wrap li i {
  opacity: 0.9;
}
/* sub7 */
.sub7.why-wrap {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7) 70%,
    rgba(243, 248, 243, 0.56) 100%
  );
  position: relative;
}
.sub7.why-wrap .content_inner {
  position: relative;
  z-index: 2;
}
.sub7 .apply-text-item {
  color: #358739;
}
.sub7 .why-content li {
  background: #e8f2e9;
}
.sub7 .why-content li:nth-of-type(2n) {
  background: #ebeff2;
}
.sub7 .why-text-wrap h5 {
  color: #144d00;
}
.sub7 .why-text-wrap .line {
  opacity: 0.4;
  background: #144d00;
}
.sub7-2.why-wrap {
  background: linear-gradient(
    180deg,
    rgba(243, 248, 243, 0.56) 0%,
    rgba(255, 255, 255, 0.7) 30%
  );
}
