@charset "UTF-8";
@import './pretendard.css';
@font-face {
  font-family: "NotoSerifKR-Light";
  font-weight: 300;
  font-display: swap;
  src: local("NotoSerifKR-Light"), url(../fonts/NotoSerifKR-Light.woff2) format("woff2"), url(../fonts/NotoSerifKR-Light.woff) format("woff");
}
@font-face {
  font-family: "NotoSerifKR";
  font-weight: 200;
  font-display: swap;
  src: local("NotoSerifKR-ExtraLight"), url(../fonts/NotoSerifKR-ExtraLight.woff2) format("woff2"), url(../fonts/NotoSerifKR-ExtraLight.woff) format("woff");
}
@font-face {
  font-family: "NotoSerifKR";
  font-weight: 300;
  font-display: swap;
  src: local("NotoSerifKR-Light"), url(../fonts/NotoSerifKR-Light.woff2) format("woff2"), url(../fonts/NotoSerifKR-Light.woff) format("woff");
}
@font-face {
  font-family: "NotoSerifKR";
  font-weight: 400;
  font-display: swap;
  src: local("NotoSerifKR-Regular"), url(../fonts/NotoSerifKR-Regular.woff2) format("woff2"), url(../fonts/NotoSerifKR-Regular.woff) format("woff");
}
@font-face {
  font-family: "Roboto";
  font-weight: 300;
  font-display: swap;
  src: local("Roboto-Light"), url(../fonts/Roboto-Light.woff2) format("woff2"), url(../fonts/Roboto-Light.woff) format("woff");
}
body {
  overflow-x: hidden;
}

body * {
  font-family: "Pretendard";
}

h1 {
  font-family: "NotoSerifKR", "NotoSerifKR-Light", "Pretendard";
}

.header-styled02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  z-index: 9999;
}
.header-styled02__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
  box-sizing: border-box;
}
.header-styled02__inner__logo img {
  width: 160px;
}
.header-styled02__inner__nav {
  height: 100%;
}
.header-styled02__inner__nav > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-styled02__inner__nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  margin-left: 70px;
}
.header-styled02__inner__nav > ul > li a {
  position: relative;
  text-decoration: none;
  transition-duration: 0.3s;
  color: #fff;
  font-weight: 300;
}
.header-styled02__inner__nav > ul > li .sub-nav {
  position: absolute;
  top: 80px;
  left: 0;
  height: 0;
  min-width: 145px;
  padding: 0 8px;
  overflow: hidden;
  transition-duration: 0.3s;
  background-color: #fff;
  box-sizing: border-box;
}
.header-styled02__inner__nav > ul > li .sub-nav ul {
  padding: 12px 0;
}
.header-styled02__inner__nav > ul > li .sub-nav ul li {
  padding: 0;
}
.header-styled02__inner__nav > ul > li .sub-nav ul li a {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  color: #555;
  font-weight: 200;
  letter-spacing: 0;
  box-sizing: border-box;
}
.header-styled02__inner__nav > ul > li .sub-nav ul li a:hover {
  background-color: #eee;
}

.m-header-styled01 {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: initial;
  width: 260px;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition-duration: 1s;
}
.m-header-styled01:has(#menu-m:checked) {
  transform: translateX(0%);
}
.m-header-styled01:has(#menu-m:checked) .m-header__button label {
  cursor: pointer;
}
.m-header-styled01:has(#menu-m:checked) .m-header__button label span {
  opacity: 0;
}
.m-header-styled01:has(#menu-m:checked) .m-header__button label span:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  opacity: 1;
}
.m-header-styled01:has(#menu-m:checked) .m-header__button label span:last-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}
.m-header-styled01__button {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
.m-header-styled01__button input {
  display: none;
}
.m-header-styled01__button input[type=checkbox]:checked ~ label span {
  left: 75%;
  opacity: 0;
}
.m-header-styled01__button input[type=checkbox]:checked ~ label span:first-of-type {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}
.m-header-styled01__button input[type=checkbox]:checked ~ label span:last-of-type {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  opacity: 1;
}
.m-header-styled01__button label {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #222;
}
.m-header-styled01__button label span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 1.5px;
  transform: translate(-50%, -50%);
  transition-duration: 1s;
}
.m-header-styled01__button label span:first-of-type {
  top: 35%;
}
.m-header-styled01__button label span:last-of-type {
  top: 65%;
}
.m-header-styled01__inner {
  padding: 0;
}
.m-header-styled01__inner__logo {
  text-align: center;
  padding: 24px 0;
}
.m-header-styled01__inner__logo img {
  width: 120px;
}
.m-header-styled01__inner__nav > ul {
  display: flex;
  flex-flow: column;
}
.m-header-styled01__inner__nav > ul > li {
  height: initial;
}
.m-header-styled01__inner__nav > ul > li input[type=checkbox] {
  display: none;
}
.m-header-styled01__inner__nav > ul > li > a, .m-header-styled01__inner__nav > ul > li label {
  display: block;
  position: relative;
  color: #000;
  font-weight: bold;
  padding: 12px;
  box-sizing: border-box;
  border-top: 1px solid #e0e0e0;
  text-decoration: none;
}
.m-header-styled01__inner__nav > ul > li > a::after, .m-header-styled01__inner__nav > ul > li label::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: #233954;
  transition-duration: 1s;
  content: "";
}
.m-header-styled01__inner__nav > ul > li .sub-nav {
  display: none;
}
.m-header-styled01__inner__nav > ul > li .sub-nav ul li a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 12px;
  background-color: #f7f7f7;
}
.m-header-styled01__inner__nav > ul > li input[type=checkbox]:checked ~ .sub-nav {
  display: block;
}
.m-header-styled01__inner__nav > ul > li input[type=checkbox]:checked ~ label {
  color: #233954;
}
.m-header-styled01__inner__nav > ul > li input[type=checkbox]:checked ~ label::after {
  width: 100%;
}

.m-header-styled01__inner__nav > ul > li input[type=checkbox]:checked ~ label::before {
  transform: translate(-50%, -50%);
}
.m-header-styled01__inner__nav > ul > li label, .m-header-styled01__inner__nav > ul > li a {
  position: relative;
  padding: 14px 16px;
  color: #333333;
  font-size: 14px;
}
.m-header-styled01__inner__nav > ul > li label::before {
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0px;
  width: 24px;
  height: 24px;
  color: #333;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 24px;
  background-image: url("../imgs/icon-cross.svg");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition-duration: 0.5s;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
}
.m-header-styled01__inner__nav > ul > li label::after {
  bottom: 0;
  height: 1px;
}
.m-header-styled01__inner__nav > ul > li .sub-nav {
  display: block;
  height: 0;
  transition-duration: 0.5s;
  overflow: hidden;
}
.m-header-styled01__inner__nav > ul > li .sub-nav ul li a {
  padding: 14px 16px;
  color: #888;
}
.m-header-styled01__inner__nav > ul > li .sub-nav ul li:not(:last-of-type) {
  border-bottom: 1px solid #e0e0e0;
}

.footer-styled02 {
  background-color: #233954;
  box-sizing: border-box;
}
.footer-styled02__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 114px;
  gap: 32px;
}
.footer-styled02__inner__logo {
  text-align: center;
}
.footer-styled02__inner__logo img {
  width: 140px;
}
.footer-styled02__inner__information ul {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.footer-styled02__inner__information ul li {
  display: flex;
  flex-flow: row nowrap;
  gap: 21px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 300;
}
.footer-styled02__inner__information ul li.footer-icon {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-styled02__inner__information ul li.footer-icon a {
  display: flex;
}
.footer-styled02__inner__information ul li.footer-icon a img {
  width: 24px;
  filter: grayscale(1);
}
.footer-styled02__copyright {
  width: 100%;
  padding: 16px 114px;
  border-top: 1px solid rgba(222, 222, 222, 0.2);
  box-sizing: border-box;
}
.footer-styled02__copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 300;
}

.scroll-down {
  position: absolute;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 8px;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.6;
}
@keyframes ani-mouse-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(6px);
  }
}
.scroll-down::before {
  display: inline-block;
  width: 18px;
  height: 29px;
  margin-bottom: 4px;
  background-image: url("../imgs/1_HOME/mouse.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: ani-mouse-move 2s infinite alternate;
  content: "";
}
.scroll-down::after {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  content: "SCROLL DOWN";
}

.title-main {
  position: relative;
  z-index: 9;
}
.title-main h3 {
  color: #555555;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5rem;
  text-align: center;
}
.title-main h1 {
  margin-top: 8px;
  color: #333333;
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 3.6875rem;
  letter-spacing: -1px;
  text-align: center;
}
.title-main p {
  color: #555555;
  margin-top: 31px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 200;
  text-align: center;
}
.title-main p:first-child:last-child {
  margin-top: 40px;
}
.title-main.white h3 {
  color: #C9C9C9;
}
.title-main.white h1 {
  color: #ffffff;
}

.video-con {
  text-align: center;
}
.video-con iframe {
  width: 944px;
  aspect-ratio: 944/500;
}

.toggle-list ul {
  padding: 0 18px;
}
.toggle-list ul li {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 44px 0;
}
.toggle-list ul li:not(:first-of-type) {
  border-top: none;
}
.toggle-list ul li .toggle-list__content label {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 36px;
  box-sizing: border-box;
  cursor: pointer;
}
.toggle-list ul li .toggle-list__content label h1 {
  padding: 0 69px;
  color: #333333;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 200;
  letter-spacing: -0.6px;
}
.toggle-list ul li .toggle-list__content label p {
  margin-top: 16px;
  color: #999;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.3125rem;
}
.toggle-list ul li .toggle-list__content__arrow {
  position: absolute;
  top: 50%;
  right: 66px;
  width: 35px;
  height: 35px;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  box-sizing: border-box;
  transform: translateY(-50%);
}
.toggle-list ul li .toggle-list__content__arrow::after {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 12.44px;
  height: 6.22px;
  background-image: url("../imgs/arrow-s-down.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
  transform-origin: center;
  transform: translate(-50%, -50%);
  content: "";
}
.toggle-list ul li .toggle-list__content__inner {
  height: 0;
  padding: 0 69px;
  color: #aaa;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.3125rem;
  transition-duration: 0.6s;
  overflow: hidden;
}
.toggle-list ul li .toggle-list__content__inner p {
  font-size: 1rem;
  line-height: 1.3125rem;
}
.toggle-list ul li .toggle-list__content input[type=checkbox] {
  display: none;
}
.toggle-list ul li .toggle-list__content input[type=checkbox]:checked ~ .toggle-list__content__inner {
  min-height: 0;
  padding-top: 15px;
}
.toggle-list ul li .toggle-list__content input[type=checkbox]:checked ~ label .toggle-list__content__arrow::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.image-title {
  width: 100%;
}
.image-title::before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 380px;
  background-color: #233954;
  content: "";
}
.image-title__fixed {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 220px);
  height: 470px;
  margin: 80px auto 0;
  background-image: url("../imgs/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.image-title__fixed::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}
.image-title__fixed__text {
  position: relative;
  z-index: 2;
}
.image-title__fixed__text h3 {
  font-family: "NotoSerifKR";
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  text-align: center;
  letter-spacing: 4.8px;
}
.image-title__fixed__text h1 {
  margin-top: 13px;
  color: #fff;
  font-size: 2.625rem;
  font-weight: 200;
  text-align: center;
}

.hr {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.hr.mt {
  margin-top: 140px;
}
.hr.mt-75 {
  margin-top: 75px;
}

.check-list__title h4 {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5rem;
}
.check-list ul {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  row-gap: 12px;
}
.check-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.5rem;
  color: #555555;
}
.check-list ul li::before {
  display: inline-block;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  background-image: url("../imgs/check.svg");
  background-size: 12.7px 9.38px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #707070;
  border-radius: 50%;
  content: "";
}
.check-list.small ul li {
  font-size: 1rem;
  line-height: 24px;
}
.check-list.small ul li::before {
  width: 20px;
  height: 20px;
  background-size: 10.63px 7.84px;
}
.check-list.vertical ul {
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.check-list.horizontal {
  margin-top: 38px;
}
.check-list.horizontal ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.only-mobile {
  display: none;
}

br.br-m {
  display: none;
}

.fixed-banner {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 15px;
  top: 60vh;
  right: 40px;
  z-index: 9999;
}
.fixed-banner__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #5983d9;
  font-size: 22px;
}
.fixed-banner__item img {
  width: 100%;
}
.fixed-banner__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

@keyframes loading-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transform-origin: center;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}
.loading img {
  position: relative;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  animation: loading-rotate linear infinite 1s;
}
.loading.hide {
  display: none;
}

.home-wrapper {
  overflow-x: hidden;
}
.home-wrapper > section {
  width: 1200px;
  margin: 0 auto;
  padding: 140px 0;
}
.home-wrapper > section > article {
  width: 100%;
}
.home-wrapper .initial {
  width: 100%;
  height: 100vh;
  padding: 0;
  overflow: hidden;
}
.home-wrapper .initial__content {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 50%;
  left: 50%;
  width: 1200px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.home-wrapper .initial__content .text-con {
  color: #fff;
}
.home-wrapper .initial__content .text-con h5 {
  font-size: 1.25rem;
  font-weight: 500;
}
.home-wrapper .initial__content .text-con h1 {
  margin-top: 42px;
  font-size: 2.625rem;
  font-weight: 200;
  line-height: 3.7rem;
  word-break: keep-all;
}
.home-wrapper .initial__content .text-con h1 em {
  margin-top: 42px;
  color: #829DC3;
  font-size: 2.625rem;
  font-weight: 200;
  line-height: 3.7rem;
  word-break: keep-all;
  font-family: "NotoSerifKR", "NotoSerifKR-Light", "Pretendard";
}
.home-wrapper .initial__content .text-con ul {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}
.home-wrapper .initial__content .text-con ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #A9A9A9;
  font-size: 1rem;
  font-weight: 200;
  line-height: 22px;
  text-align: center;
}
.home-wrapper .initial__content .image-con {
  width: 685px;
  aspect-ratio: 685/440;
}
.home-wrapper .initial__content .image-con img {
  width: 100%;
  height: 100%;
}
.home-wrapper .initial::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.home-wrapper .initial::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}
.home-wrapper .video__content {
  margin: 71px auto 0;
}
.home-wrapper .special {
  position: relative;
  width: 100%;
  background-color: #222;
}
.home-wrapper .special::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 591px;
  height: 591px;
  background-image: url("../imgs/1_HOME/special_logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(140px, -140px);
  content: "";
}
.home-wrapper .special__title h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 300;
  text-align: center;
  color: #999;
}
.home-wrapper .special__title h1 {
  margin-top: 8px;
  color: #829DC3;
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 3.625rem;
  text-align: center;
}
.home-wrapper .special__content {
  width: 1200px;
  margin: 72px auto 0;
}
.home-wrapper .special__content__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.home-wrapper .special__content__item:last-of-type {
  margin-top: 40px;
}
.home-wrapper .special__content__item__image {
  width: 582px;
  aspect-ratio: 582/350;
}
.home-wrapper .special__content__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-wrapper .special__content__item__text {
  flex: 1 1 0;
  margin-left: 106px;
}
.home-wrapper .special__content__item__text h2 {
  font-family: "NotoSerifKR";
  color: #829DC3;
  font-size: 1.5rem;
  font-weight: 200;
}
.home-wrapper .special__content__item__text p {
  margin-top: 36px;
  color: #999;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 200;
}
.home-wrapper .special__chart-content {
  display: flex;
  gap: 36px;
  width: 1200px;
  margin: 76px auto 0;
}
.home-wrapper .special__chart-content__item {
  flex: 1 1 0;
  aspect-ratio: 1/1;
}
.home-wrapper .special__chart-content__item img {
  width: 100%;
  height: 100%;
}
.home-wrapper .review {
  position: relative;
  width: 100%;
}
.home-wrapper .review::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 100%;
  background-color: #fff;
  content: "";
  z-index: 2;
}
.home-wrapper .review__content {
  margin-top: 71px;
}
.home-wrapper .review__content__swiper #review-swiper {
  position: relative;
  width: calc(100% - 360px);
  height: 315px;
  margin-left: 360px;
}
.home-wrapper .review__content__swiper .swiper-slide {
  height: 100%;
}
.home-wrapper .review__content__swiper .review-card {
  display: flex;
  flex-flow: column;
  padding: 30px 46px 30px 30px;
  height: 100%;
  background-color: #F4F4F4;
  box-sizing: border-box;
}
.home-wrapper .review__content__swiper .review-card__title {
  display: flex;
  align-items: center;
}
.home-wrapper .review__content__swiper .review-card__title img {
  width: 47px;
  height: 47px;
}
.home-wrapper .review__content__swiper .review-card__title h5 {
  margin-left: 20px;
  color: #191919;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5rem;
}
.home-wrapper .review__content__swiper .review-card__content {
  flex: 1;
  margin-top: 40px;
}
.home-wrapper .review__content__swiper .review-card__content p {
  color: #555;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  word-break: keep-all;
}
.home-wrapper .review__content__swiper .review-card__link {
  margin-top: 32px;
  text-align: right;
}
.home-wrapper .review__content__swiper .review-card__link a {
  color: #333333;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
}
.home-wrapper .review__content__swiper .review-card__link a::after {
  display: inline-block;
  width: 6.25px;
  height: 12.5px;
  margin-left: 14px;
  background-image: url("../imgs/arrow-right.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
}
.home-wrapper .review__content__swiper .swiper-button-next {
  left: -20px;
  width: 33px;
  height: 33px;
  background-color: #1C5BA8;
  border-radius: 50%;
  transform: translateX(-100%);
  z-index: 9;
}
.home-wrapper .review__content__swiper .swiper-button-next::after {
  background-image: url("../imgs/arrow-w-left.svg");
  width: 7.32px;
  height: 14.64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.home-wrapper .profile {
  width: 100%;
}
.home-wrapper .profile__content {
  display: flex;
  gap: 100px;
  width: 100%;
  margin: 0 auto;
}
.home-wrapper .profile__content__image {
  width: 479px;
  aspect-ratio: 490/600;
  overflow: hidden;
  margin-left: calc((100vw - 1200px) / 2 + 95px);
}
.home-wrapper .profile__content__image img {
  width: 100%;
}
.home-wrapper .profile__content__information {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.home-wrapper .profile__content__information__title h5 {
  color: #999999;
  font-size: 1rem;
  font-weight: 300;
}
.home-wrapper .profile__content__information__title h1 {
  margin-top: 12px;
  color: #191919;
  font-size: 1.5rem;
}
.home-wrapper .profile__content__information__history {
  margin-top: 42px;
}
.home-wrapper .profile__content__information__history ul:not(:first-of-type) {
  margin-top: 18px;
}
.home-wrapper .profile__content__information__history ul li {
  color: #555555;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
}
.home-wrapper .profile__image-content {
  position: relative;
  margin-top: 70px;
}
.home-wrapper .profile__image-content::after {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100vw - 1200px) / 2 + 95px);
  height: 100%;
  background-color: #fff;
  content: "";
  transform: scaleY(1.1);
  z-index: 2;
}
.home-wrapper .profile__image-content__swiper #profile-swiper {
  position: relative;
  width: calc(100% - 180px);
  margin-left: calc((100vw - 1200px) / 2 + 95px);
}
.home-wrapper .profile__image-content__swiper .profile-card__image {
  aspect-ratio: 376/300;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.home-wrapper .profile__image-content__swiper .profile-card__image img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-wrapper .profile__image-content__swiper .profile-card__image.cert1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: initial;
     object-fit: initial;
}
.home-wrapper .profile__image-content__swiper .profile-card h5 {
  color: #555555;
  margin-top: 20px;
  font-size: 1.125rem;
  text-align: center;
}
.home-wrapper .profile__image-content__swiper .swiper-button-next {
  left: -20px;
  width: 33px;
  height: 33px;
  background-color: #1C5BA8;
  border-radius: 50%;
  transform: translateX(-100%);
  z-index: 9;
}
.home-wrapper .profile__image-content__swiper .swiper-button-next::after {
  background-image: url("../imgs/arrow-w-left.svg");
  width: 7.32px;
  height: 14.64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.home-wrapper .philosophy {
  width: 100%;
  background-color: #222;
}
.home-wrapper .philosophy__content {
  display: flex;
  gap: 103px;
  width: 1560px;
  height: 800px;
  background-color: #233954;
}
.home-wrapper .philosophy__content__image {
  width: 875px;
  aspect-ratio: 875/800;
}
.home-wrapper .philosophy__content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-wrapper .philosophy__content__text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #fff;
}
.home-wrapper .philosophy__content__text h5 {
  color: #C9C9C9;
  font-size: 1.25rem;
  font-weight: 300;
  word-break: keep-all;
}
.home-wrapper .philosophy__content__text h1 {
  margin-top: 16px;
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 3.625rem;
  word-break: keep-all;
}
.home-wrapper .philosophy__content__text p {
  margin-top: 20px;
  line-height: 1.5rem;
  font-weight: 200;
  word-break: keep-all;
  letter-spacing: 0.21px;
}
.home-wrapper .philosophy__content__text p:first-of-type {
  margin-top: 62px;
}
.home-wrapper .subject {
  width: 1280px;
}
.home-wrapper .subject__content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 71px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.1);
  gap: 1px;
}
.home-wrapper .subject__content__item {
  aspect-ratio: 1/1;
  box-sizing: border-box;
  padding: 42px 40px 0;
  background-color: #fff;
}
.home-wrapper .subject__content__item__title {
  margin-top: 19px;
}
.home-wrapper .subject__content__item__title h1 {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 32px;
}
.home-wrapper .subject__content__item__title h1 + h1 {
  margin-top: 3px;
}
.home-wrapper .subject__content__item__image {
  width: 96px;
  aspect-ratio: 1/1;
}
.home-wrapper .subject__content__item__image img {
  width: 100%;
  height: 100%;
}
.home-wrapper .subject__content__item__text {
  margin-top: 23px;
}
.home-wrapper .subject__content__item__text p {
  color: #555555;
  font-size: 0.9375rem;
  font-weight: 200;
  line-height: 1.5rem;
  word-break: keep-all;
}
.home-wrapper .gallery {
  width: 100%;
  background-color: #F8F8FA;
}
.home-wrapper .gallery__content {
  display: flex;
  gap: 36px;
  margin-top: 71px;
  justify-content: center;
}
.home-wrapper .gallery__content__swiper #gallery-swiper {
  position: relative;
  width: 788px;
  height: 534px;
  overflow: hidden;
}
.home-wrapper .gallery__content__swiper #gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-wrapper .gallery__content__swiper #gallery-swiper .swiper-button-prev,
.home-wrapper .gallery__content__swiper #gallery-swiper .swiper-button-next {
  left: 0;
  width: 45px;
  height: 45px;
  background-color: #305474;
  opacity: 0.8;
  z-index: 9;
}
.home-wrapper .gallery__content__swiper #gallery-swiper .swiper-button-prev::after,
.home-wrapper .gallery__content__swiper #gallery-swiper .swiper-button-next::after {
  background-image: url("../imgs/arrow-w-left.svg");
  width: 11.25px;
  height: 22.51px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.home-wrapper .gallery__content__swiper #gallery-swiper .swiper-button-next {
  left: initial;
  right: 0;
}
.home-wrapper .gallery__content__swiper #gallery-swiper .swiper-button-next::after {
  transform: rotate(180deg);
}
.home-wrapper .gallery__content__controller {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 18px;
  height: 534px;
}
.home-wrapper .gallery__content__controller__item {
  position: relative;
  overflow: hidden;
}
.home-wrapper .gallery__content__controller__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-wrapper .gallery__content__controller__item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  transition-duration: 0.3;
  content: "";
}
.home-wrapper .gallery__content__controller__item.on::after {
  opacity: 0;
}
.home-wrapper .route {
  padding-bottom: 0;
}
.home-wrapper .route__content {
  display: flex;
  align-items: center;
  gap: 103px;
  margin-top: 71px;
}
.home-wrapper .route__content__image {
  display: flex;
  flex-flow: column wrap;
  gap: 20px;
}
.home-wrapper .route__content__image__item {
  width: 582px;
  aspect-ratio: 582/400;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
}
.home-wrapper .route__content__image__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-wrapper .route__content__information {
  flex: 1 1 0;
}
.home-wrapper .route__content__information__table table {
  width: 100%;
}
.home-wrapper .route__content__information__table table tr {
  border-bottom: 1px solid #DEDEDE;
}
.home-wrapper .route__content__information__table table tr:last-of-type {
  border-bottom: none;
}
.home-wrapper .route__content__information__table table tr th, .home-wrapper .route__content__information__table table tr td {
  padding: 30px 0;
  word-break: keep-all;
}
.home-wrapper .route__content__information__table table tr th {
  padding-right: 20px;
}
.home-wrapper .route__content__information__table .tel {
  color: #191919;
  font-size: 1.5rem;
  font-weight: 300;
}
.home-wrapper .route__content__information__table .route-time-grid {
  display: grid;
  grid-template-columns: 60px 1fr;
  -moz-column-gap: 27px;
       column-gap: 27px;
  row-gap: 10px;
}
.home-wrapper .route__content__information__table .route-time-grid > * {
  color: #555555;
  font-size: 1rem;
  font-weight: 300;
}
.home-wrapper .route__content__information__table .route-time-grid .notice {
  margin-top: 2px;
  grid-column-start: 1;
  grid-column-end: 3;
}
.home-wrapper .route__content__information__table .route-time-grid .notice span {
  display: block;
  color: #999999;
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 6px;
}
.home-wrapper .route__content__information__table .route-time-grid .notice span:first-of-type {
  margin-top: 0;
}
.home-wrapper .route__content__information__table .toggle-list ul {
  padding: 0;
}
.home-wrapper .route__content__information__table .toggle-list ul li {
  padding: 10px 0;
  border-left: none;
  border-right: none;
  border-color: #EAEAEA;
}
.home-wrapper .route__content__information__table .toggle-list ul li:first-of-type {
  border-top: none;
}
.home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content label {
  height: initial;
}
.home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content label h1 {
  color: #555555;
  padding: 0;
  font-size: 1rem;
  font-weight: 300;
  font-family: "Pretendard";
}
.home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content__arrow {
  right: 0;
  width: 24px;
  height: 24px;
}
.home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content__arrow::after {
  width: 10px;
  height: 5px;
}
.home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content__inner {
  padding: 0;
  transition-duration: initial;
}
.home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content__inner p {
  color: #555;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.7rem;
}
.home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content input[type=checkbox]:checked ~ .toggle-list__content__inner {
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 16px;
}
.home-wrapper .route__content__information__link {
  margin-top: 6px;
}
.home-wrapper .route__content__information__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 59px;
  background-color: #1C5BA8;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 300;
  text-decoration: none;
}
.home-wrapper .route__content__information__link a::after {
  width: 6.25px;
  height: 12.5px;
  margin-left: 20px;
  background-image: url("../imgs/arrow-w-left.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  content: "";
}
.home-wrapper .faq__content {
  margin-top: 71px;
}
.home-wrapper .faq__content .toggle-list h1::before {
  position: relative;
  top: -1.5px;
  color: #999999;
  font-size: 1.25rem;
  font-weight: 300;
  margin-right: 6px;
  content: "Q.";
}
.home-wrapper .faq__content .toggle-list__content__inner p {
  color: #555555;
  font-weight: 200;
  line-height: 1.7rem;
}

.sub-wrapper {
  overflow-x: hidden;
}
.sub-wrapper > section {
  width: 1200px;
  margin: 0 auto;
  padding: 140px 0;
}
.sub-wrapper > section > article {
  width: 100%;
}
.sub-wrapper .solve__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.sub-wrapper .solve__content p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  text-align: center;
}
.sub-wrapper .solve__content::before, .sub-wrapper .solve__content::after {
  width: 18.48px;
  height: 18.48px;
  background-image: url("../imgs/cross-line.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.sub-wrapper .solve__title {
  margin-top: 69.5px;
}
.sub-wrapper .solve__title h2 {
  color: #555555;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.1875rem;
  text-align: center;
}
.sub-wrapper .solve__title h2 span {
  color: #999999;
}
.sub-wrapper .image-info__content__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub-wrapper .image-info__content__item:not(:first-of-type) {
  margin-top: 140px;
}
.sub-wrapper .image-info__content__item__text h3 {
  color: #555555;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 300;
}
.sub-wrapper .image-info__content__item__text h1 {
  margin-top: 8px;
  color: #333333;
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 3.7rem;
}
.sub-wrapper .image-info__content__item__text h1.gold {
  color: #D2A780;
}
.sub-wrapper .image-info__content__item__text h1.small {
  margin-top: 14px;
  color: #333333;
  font-size: 1.875rem;
  line-height: 2.8125rem;
  font-weight: 200;
}
.sub-wrapper .image-info__content__item__text h4 {
  margin-top: 60px;
  color: #191919;
  font-size: 1.25rem;
  font-weight: 300;
}
.sub-wrapper .image-info__content__item__text h4 + p {
  margin-top: 30px;
}
.sub-wrapper .image-info__content__item__text p {
  margin-top: 51px;
  color: #555555;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 200;
}
.sub-wrapper .image-info__content__item__text em {
  background-color: rgba(27, 68, 131, 0.1);
}
.sub-wrapper .image-info__content__item__text__info {
  margin-top: 21px;
}
.sub-wrapper .image-info__content__item__text__info p {
  margin: 0;
  color: #A9A9A9;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5rem;
}
.sub-wrapper .image-info__content__item__image {
  width: 685px;
  aspect-ratio: 685/450;
}
.sub-wrapper .image-info__content__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .image-info__content__item__image.grid-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  -moz-column-gap: 36px;
       column-gap: 36px;
}
.sub-wrapper .image-info__content__item__image.grid-image > * {
  aspect-ratio: 273/170;
}
.sub-wrapper .image-info__content__item__image.grid-image > *:first-of-type {
  grid-column-start: 1;
  grid-column-end: 3;
  aspect-ratio: 582/450;
}
.sub-wrapper .image-info__content__item__image.grid-image > * img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .image-info__content__item .check-list {
  margin-top: 51px;
}
.sub-wrapper .image-info__content__item .check-list__title {
  margin-bottom: 20px;
}
.sub-wrapper .image-info.type2 .image-info__content__item {
  justify-content: flex-start;
  gap: 103px;
}
.sub-wrapper .image-info.type2 .image-info__content__item__image {
  width: 581px;
  aspect-ratio: 581/450;
}
.sub-wrapper .image-info.type3 .image-info__content__item__image {
  width: 582px;
  aspect-ratio: 582/550;
}
.sub-wrapper .image-info.black {
  width: 100%;
  background-color: #222;
  color: #FFFFFF;
}
.sub-wrapper .image-info.black .image-info__content {
  width: 1200px;
  margin: 0 auto;
}
.sub-wrapper .image-info.black .image-info__content__item__text h3 {
  color: #A9A9A9;
}
.sub-wrapper .image-info.black .image-info__content__item__text h1 {
  color: #FFFFFF;
}
.sub-wrapper .image-info.black .image-info__content__item__text h1.gold {
  color: #D2A780;
}
.sub-wrapper .image-info.black .image-info__content__item__text h4 {
  color: #FFFFFF;
}
.sub-wrapper .image-info.black .image-info__content__item__text p {
  color: #FFFFFF;
}
.sub-wrapper .image-info.black .image-info__content__item__text__info p {
  color: #A9A9A9;
}
.sub-wrapper .image-info.black .image-info__content__item .check-list ul li {
  color: #FFFFFF;
}
.sub-wrapper .image-info.black .image-info__content__item .check-list ul li::before {
  border-color: #fff;
  background-image: url("../imgs/check-w.svg");
}
.sub-wrapper .image-info.multiple .image-info__content__item__image {
  display: flex;
  align-items: center;
  gap: 38px;
}
.sub-wrapper .image-info.multiple .image-info__content__item__image > img {
  width: 290px;
  aspect-ratio: 290/250;
  height: initial;
}
.sub-wrapper .image-info.horizontal .image-info__content__item {
  justify-content: flex-start;
  gap: 103px;
}
.sub-wrapper .image-info.horizontal .image-info__content__item:not(:first-of-type) {
  margin-top: 70px;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__image {
  width: 376px;
  aspect-ratio: 376/450;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__text {
  display: flex;
  justify-content: flex-start;
  flex: 1 1 0;
  width: 569px;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__text .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 240px;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__text .right {
  display: flex;
  align-items: center;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__text h3 {
  color: #A9A9A9;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 300;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__text h1 {
  margin-top: 12px;
  color: #829DC3;
  font-size: 2.5rem;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__text p {
  margin-top: 31px;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5rem;
}
.sub-wrapper .image-info.horizontal .image-info__content__item__text .check-list {
  margin-top: 0;
}
.sub-wrapper .ultrasonic {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-wrapper .ultrasonic__title h1 {
  color: #191919;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
}
.sub-wrapper .ultrasonic__title p {
  margin-top: 21px;
  color: #555555;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  text-align: center;
}
.sub-wrapper .ultrasonic__content {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 70px;
  text-align: center;
}
.sub-wrapper .ultrasonic__content__image {
  display: flex;
  gap: 36px;
}
.sub-wrapper .ultrasonic__content__image__item {
  width: 376px;
  aspect-ratio: 376/266;
  overflow: hidden;
}
.sub-wrapper .ultrasonic__content__image__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .ultrasonic__content__image__item.scale img {
  transform: scale(1.6) translate(16px, 32px);
}
.sub-wrapper .ultrasonic__content__video {
  margin-top: 36px;
}
.sub-wrapper .ultrasonic__content__video img, .sub-wrapper .ultrasonic__content__video video, .sub-wrapper .ultrasonic__content__video > * {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .process {
  position: relative;
  width: 100%;
  background-image: url("../imgs/2_왕도약침/process_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sub-wrapper .process::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 50, 83, 0.9);
  content: "";
}
.sub-wrapper .process__content {
  position: relative;
  margin-top: 69.4px;
  z-index: 9;
}
.sub-wrapper .process__content ul {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.sub-wrapper .process__content ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 211px;
  height: 211px;
  border-radius: 50%;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.sub-wrapper .process__content ul li span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
}
.sub-wrapper .process__content ul li p {
  color: #fff;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5rem;
  text-align: center;
}
.sub-wrapper .image-only {
  width: 994px;
  text-align: center;
}
.sub-wrapper .image-only.small {
  text-align: center;
}
.sub-wrapper .image-only.small .image-only__content {
  width: 788px;
  aspect-ratio: 788/450;
  margin: 71px auto 0;
}
.sub-wrapper .image-only.small .image-only__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .image-only__content {
  margin-top: 71px;
}
.sub-wrapper .image-only__content img {
  width: 100%;
  vertical-align: middle;
}
.sub-wrapper .image-only__content h5 {
  margin-top: 40px;
  color: #555555;
  font-size: 1.5rem;
  line-height: 2.1875rem;
  font-weight: 300;
  text-align: center;
}
.sub-wrapper .image-only__content.shadow {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
}
.sub-wrapper .image-only.multiple {
  width: 1200px;
}
.sub-wrapper .image-only.multiple .image-only__content {
  display: flex;
  gap: 24px;
}
.sub-wrapper .image-only.multiple .image-only__content .before, .sub-wrapper .image-only.multiple .image-only__content .after {
  width: 582px;
  height: initial;
  aspect-ratio: 582/500;
  overflow: hidden;
}
.sub-wrapper .image-only.multiple .image-only__content .before img, .sub-wrapper .image-only.multiple .image-only__content .after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .image-only.multiple .image-only__content .before img {
  transform: translateY(5vw) scale(1.8);
}
.sub-wrapper .reservation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 340px;
  padding: 0;
  background-image: url("../imgs/reservation_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sub-wrapper .reservation::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  content: "";
}
.sub-wrapper .reservation__link {
  position: relative;
  z-index: 2;
}
.sub-wrapper .reservation__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 159px;
  height: 62px;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: none;
  transition-duration: 0.3s;
}
.sub-wrapper .reservation__link a::after {
  width: 6.25px;
  height: 12.5px;
  margin-left: 20px;
  background-image: url("../imgs/arrow-w-left.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  content: "";
}
.sub-wrapper .reservation__link a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.sub-wrapper .born {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.sub-wrapper .born::before, .sub-wrapper .born::after {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.2);
  transform: translateX(-50%);
  z-index: 99;
  content: "";
}
.sub-wrapper .born::after {
  top: initial;
  bottom: 0;
}
.sub-wrapper .born__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1200px;
  margin: 0 auto;
  height: 629px;
}
.sub-wrapper .born__content .title-main h1, .sub-wrapper .born__content .title-main h3, .sub-wrapper .born__content .title-main p {
  text-align: left;
}
.sub-wrapper .born__content .check-list {
  margin-top: 74px;
  z-index: 99;
}
.sub-wrapper .born__content .check-list ul li {
  word-break: keep-all;
  white-space: nowrap;
  font-weight: 200;
}
.sub-wrapper .born__content__image {
  position: absolute;
  left: 0;
  width: 100vw;
  height: 100%;
}
.sub-wrapper .born__content__image::after {
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: url("../imgs/4_추나요법/born.jpg");
  background-size: contain;
  background-position: 42vw;
  background-repeat: no-repeat;
  background-attachment: fixed;
  content: "";
}
.sub-wrapper .slider {
  width: 100%;
  background-color: #222;
}
.sub-wrapper .slider__content {
  display: flex;
  width: 1200px;
  margin: 0 auto;
}
.sub-wrapper .slider__content__text h3 {
  color: #A9A9A9;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 300;
}
.sub-wrapper .slider__content__text h1 {
  margin-top: 17px;
  color: #FFFFFF;
  font-size: 1.875rem;
  line-height: 2.8125rem;
  font-weight: 200;
  word-break: keep-all;
}
.sub-wrapper .slider__content__text h1 span {
  font-family: "NotoSerifKR";
  color: #829DC3;
}
.sub-wrapper .slider__content__text ul {
  margin-top: 51px;
}
.sub-wrapper .slider__content__text ul li {
  position: relative;
  padding-left: 44px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 100;
  color: #ffffff;
}
.sub-wrapper .slider__content__text ul li:not(:first-of-type) {
  margin-top: 20px;
}
.sub-wrapper .slider__content__text ul li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 24.4px;
  height: 6.5px;
  background-image: url("../imgs/arrow-half.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.sub-wrapper .slider__content__swiper {
  position: relative;
  margin-left: 112px;
}
.sub-wrapper .slider__content__swiper #treat-swiper {
  position: relative;
  width: 551px;
  height: 380px;
  margin: 0 67px;
  overflow: hidden;
}
.sub-wrapper .slider__content__swiper #treat-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .slider__content__swiper .swiper-button-prev,
.sub-wrapper .slider__content__swiper .swiper-button-next {
  left: 0;
  z-index: 9;
}
.sub-wrapper .slider__content__swiper .swiper-button-prev::after,
.sub-wrapper .slider__content__swiper .swiper-button-next::after {
  background-image: url("../imgs/arrow-w-left-thin.svg");
  width: 21px;
  height: 42px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.sub-wrapper .slider__content__swiper .swiper-button-next {
  left: initial;
  right: 0;
}
.sub-wrapper .slider__content__swiper .swiper-button-next::after {
  transform: rotate(180deg);
}
.sub-wrapper .slider__content__swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: initial;
  border: 1px solid #fff;
  opacity: 1;
}
.sub-wrapper .slider__content__swiper .swiper-pagination-bullet-active {
  background-color: #fff;
}
.sub-wrapper .grid01__content {
  display: grid;
  grid-template-columns: repeat(3, 331px);
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1px;
  margin: 0 auto;
  margin-top: 70px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}
.sub-wrapper .grid01__content__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 194px;
  background-color: #fff;
}
.sub-wrapper .grid01__content__item h1 {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 200;
}
.sub-wrapper .image-grid__content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px;
}
.sub-wrapper .image-grid__content ul li {
  display: flex;
  flex-direction: column;
  height: 544px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.sub-wrapper .image-grid__content ul li .image {
  width: 100%;
}
.sub-wrapper .image-grid__content ul li .image img {
  width: 100%;
}
.sub-wrapper .image-grid__content ul li .title {
  position: relative;
  padding-bottom: 38px;
  margin-top: 42px;
}
.sub-wrapper .image-grid__content ul li .title h1 {
  font-size: 1.5rem;
  line-height: 1.6875rem;
  font-weight: 300;
  text-align: center;
}
.sub-wrapper .image-grid__content ul li .title::after {
  position: absolute;
  display: inline-block;
  left: 50%;
  bottom: 0;
  width: 43px;
  height: 2px;
  border-radius: 1px;
  background-color: #999999;
  transform: translateX(-50%);
  content: "";
}
.sub-wrapper .image-grid__content ul li .content {
  flex: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  padding: 0 8px;
  overflow: hidden;
  transition-duration: 1s;
  opacity: 0;
}
.sub-wrapper .image-grid__content ul li .content p {
  color: #555555;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5625rem;
  letter-spacing: -0.4px;
  text-align: center;
}
.sub-wrapper .image-grid__content ul li.on .content, .sub-wrapper .image-grid__content ul li:hover .content {
  opacity: 1 !important;
  flex: 1 !important;
}
.sub-wrapper .grid02 {
  width: 819px;
}
.sub-wrapper .grid02__content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  margin-top: 71px;
}
.sub-wrapper .grid02__content__item {
  aspect-ratio: 1/1;
  box-sizing: border-box;
  padding: 42px 40px 0;
  background-color: #fff;
}
.sub-wrapper .grid02__content__item__title h1 {
  color: #333333;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 200;
}
.sub-wrapper .grid02__content__item__text {
  margin-top: 75px;
}
.sub-wrapper .grid02__content__item__text p {
  color: #555555;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5rem;
  word-break: keep-all;
}
.sub-wrapper .effective__image {
  width: 1200px;
  aspect-ratio: 1200/550;
  margin-top: 71px;
}
.sub-wrapper .effective__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-wrapper .effective__content {
  position: relative;
  margin-top: 40px;
}
.sub-wrapper .effective__content__swiper #effective-swiper {
  position: relative;
  width: calc(100vw - (100vw - 1200px) / 2);
}
.sub-wrapper .effective__content__swiper .swiper-wrapper .swiper-slide .effective-card {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 300px;
  padding: 36px 30px 27px;
  background-color: #F4F4F4;
  box-sizing: border-box;
}
.sub-wrapper .effective__content__swiper .swiper-wrapper .swiper-slide .effective-card__title h5 {
  color: #555555;
  font-size: 1.5rem;
  font-weight: 300;
}
.sub-wrapper .effective__content__swiper .swiper-wrapper .swiper-slide .effective-card__title p {
  margin-top: 10px;
  color: #999999;
  font-size: 0.875rem;
  font-weight: 300;
}
.sub-wrapper .effective__content__swiper .swiper-wrapper .swiper-slide .effective-card__content p {
  color: #555555;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.4375rem;
}
.sub-wrapper .effective__content__swiper .swiper-button-next {
  left: -20px;
  width: 33px;
  height: 33px;
  background-color: #1C5BA8;
  border-radius: 50%;
  transform: translateX(-100%);
  z-index: 9;
}
.sub-wrapper .effective__content__swiper .swiper-button-next::after {
  background-image: url("../imgs/arrow-w-left.svg");
  width: 7.32px;
  height: 14.64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
.sub-wrapper .effective__content__swiper::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1500px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  content: "";
  z-index: 5;
}
.sub-wrapper .treatment__content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 36px;
}
.sub-wrapper .treatment__content__grid__item a {
  text-decoration: none;
}
.sub-wrapper .treatment__content__grid__item a:hover .image {
  transform: translateY(-6px);
}
.sub-wrapper .treatment__content__grid__item a .image {
  aspect-ratio: 376/275;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  transition-duration: 0.4s;
}
.sub-wrapper .treatment__content__grid__item a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.sub-wrapper .treatment__content__grid__item a .title {
  margin-top: 20px;
}
.sub-wrapper .treatment__content__grid__item a .title h5 {
  color: #191919;
  font-size: 1.125rem;
}
.sub-wrapper .treatment__content__grid__item a .title p {
  color: #999999;
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: 300;
}
.sub-wrapper .treatment__content__grid__item a .content {
  margin-top: 19px;
}
.sub-wrapper .treatment__content__grid__item a .content p {
  color: #555555;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
}

@media screen and (max-width: 1220px) {
  .home-wrapper .profile__content__image {
    margin-left: 105px;
  }
  .home-wrapper .profile__image-content::after {
    width: 105px;
  }
  .home-wrapper .profile__image-content__swiper #profile-swiper {
    margin-left: 105px;
    width: calc(100% - 105px);
  }
}
.fadeInUp {
  opacity: 0;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 1600px) {
  .home-wrapper .philosophy__content {
    width: 1280px;
  }
  .home-wrapper .philosophy__content__image {
    width: 620px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 14px;
  }
  .home-wrapper .initial__content {
    width: 900px;
    justify-content: center;
    gap: 60px;
  }
  .home-wrapper .initial__content .text-con ul {
    margin-top: 30px;
  }
  .home-wrapper .initial__content .text-con ul li {
    width: 92px;
    height: 92px;
    font-size: 12px;
    line-height: 16px;
  }
  .home-wrapper .initial__content .image-con {
    width: 480px;
  }
  .home-wrapper .video {
    width: 840px;
  }
  .home-wrapper .video__content .video-con iframe {
    width: 100%;
  }
  .home-wrapper .special__content {
    width: 840px;
  }
  .home-wrapper .special__content__item__image {
    width: 420px;
  }
  .home-wrapper .special__content__item__text {
    margin-left: 32px;
  }
  .home-wrapper .special__chart-content {
    width: 840px;
  }
  .home-wrapper .review__content__swiper #review-swiper {
    width: calc(100% - 200px);
    margin-left: 200px;
  }
  .home-wrapper .review::after {
    width: 200px;
  }
  .home-wrapper .philosophy__content {
    width: 100%;
  }
  .home-wrapper .philosophy__content__image {
    width: 620px;
  }
  .home-wrapper .subject {
    width: 640px;
  }
  .home-wrapper .subject__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-wrapper .gallery__content {
    width: 788px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
  .home-wrapper .gallery__content__controller {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 120px 120px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .home-wrapper .route {
    width: 840px;
  }
  .home-wrapper .route__content {
    gap: 60px;
  }
  .home-wrapper .route__content__image__item {
    width: 380px;
  }
  .home-wrapper .route__content__information__link a {
    width: 160px;
    height: 40px;
  }
  .home-wrapper .faq {
    width: 840px;
  }
  .home-wrapper .faq__content__arrow {
    right: 32px;
  }
  .sub-wrapper > section {
    width: 840px;
  }
  .sub-wrapper .image-title::before {
    height: 240px;
  }
  .sub-wrapper .image-title__fixed {
    width: calc(100% - 110px);
    height: 320px;
  }
  .sub-wrapper .reservation {
    height: 200px;
  }
  .sub-wrapper .image-info__content__item__image {
    width: 460px;
  }
  .sub-wrapper .image-info.type2 .image-info__content__item, .sub-wrapper .image-info.type3 .image-info__content__item {
    gap: 70px;
  }
  .sub-wrapper .image-info.type2 .image-info__content__item__image, .sub-wrapper .image-info.type3 .image-info__content__item__image {
    width: 380px;
  }
  .sub-wrapper .image-info.type2 .image-info__content__item__image.grid-image, .sub-wrapper .image-info.type3 .image-info__content__item__image.grid-image {
    gap: 24px;
  }
  .sub-wrapper .image-info.black .image-info__content {
    width: 840px;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item {
    gap: 70px;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item__image img {
    width: 200px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item {
    gap: 70px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__image {
    width: 240px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__text .left {
    min-width: 195px;
  }
  .sub-wrapper .process__content ul {
    flex-wrap: wrap;
  }
  .sub-wrapper .process__content ul li {
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
  }
  .sub-wrapper .image-only {
    width: 720px;
  }
  .sub-wrapper .image-only.small .image-only__content {
    width: 600px;
  }
  .sub-wrapper .image-only.multiple {
    width: 720px;
  }
  .sub-wrapper .image-only.multiple .image-only__content {
    justify-content: center;
  }
  .sub-wrapper .image-only.multiple .image-only__content .after, .sub-wrapper .image-only.multiple .image-only__content .before {
    width: 340px;
  }
  .sub-wrapper .born__content {
    width: 840px;
    height: 600px;
  }
  .sub-wrapper .born__content__image {
    height: 120%;
  }
  .sub-wrapper .born__content__image::after {
    background-size: cover;
    background-position: 36vw;
  }
  .sub-wrapper .slider__content {
    width: 840px;
    align-items: center;
  }
  .sub-wrapper .slider__content__swiper {
    height: -moz-fit-content;
    height: fit-content;
    margin-left: 32px;
  }
  .sub-wrapper .slider__content__swiper #treat-swiper {
    width: 400px;
    height: 275.8px;
  }
  .sub-wrapper .grid01__content {
    grid-template-columns: repeat(3, 220px);
  }
  .sub-wrapper .grid01__content__item {
    height: 160px;
  }
  .sub-wrapper .image-grid__content ul {
    gap: 24px;
  }
  .sub-wrapper .image-grid__content ul li {
    height: 400px;
  }
  .sub-wrapper .image-grid__content ul li .title {
    margin-top: 16px;
    padding-bottom: 16px;
  }
  .sub-wrapper .grid02 {
    width: 760px;
  }
  .sub-wrapper .effective__image {
    width: 100%;
  }
  .sub-wrapper .effective__content__swiper {
    padding: 0 48px;
  }
  .sub-wrapper .effective__content__swiper #effective-swiper {
    width: calc(100vw - (100vw - 840px) / 2);
  }
  .sub-wrapper .effective__content__swiper .swiper-wrapper .swiper-slide .effective-card {
    height: 260px;
    transform: translateX(-12px);
  }
  .toggle-list ul li .toggle-list__content__arrow {
    right: 32px;
  }
  .header-styled02__inner {
    width: 100%;
    padding: 0 24px;
  }
  .footer-styled02__inner {
    padding: 48px 24px;
  }
}
@media screen and (max-width: 900px) {
  .home-wrapper .initial__content {
    width: 100%;
    justify-content: center;
  }
  .home-wrapper .initial__content .text-con {
    text-align: center;
  }
  .home-wrapper .initial__content .text-con ul {
    justify-content: center;
  }
  .home-wrapper .initial__content .image-con {
    display: none;
  }
  .home-wrapper .video {
    width: 600px;
  }
  .home-wrapper .special__content {
    width: 600px;
  }
  .home-wrapper .special__content__item__image {
    width: 368px;
  }
  .home-wrapper .special__content__item__text {
    margin-left: 0;
  }
  .home-wrapper .special__chart-content {
    width: 600px;
  }
  .home-wrapper .review__content__swiper #review-swiper {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  .home-wrapper .review::after {
    width: 80px;
  }
  .home-wrapper .profile__content {
    gap: 36px;
    width: 100%;
  }
  .home-wrapper .profile__content__image {
    width: 320px;
  }
  .home-wrapper .profile__content__information__title h5 {
    font-size: 14px;
  }
  .home-wrapper .profile__content__information__title h1 {
    font-size: 24px;
  }
  .home-wrapper .profile__content__information__history ul li {
    font-size: 14px;
    line-height: 22px;
  }
  .home-wrapper .profile__image-content__swiper #profile-swiper {
    width: calc(100% - 103px);
    margin-left: 103px;
  }
  .home-wrapper .profile__image-content__swiper .profile-card h5 {
    font-size: 12px;
  }
  .home-wrapper .philosophy__content {
    height: 640px;
    gap: 32px;
  }
  .home-wrapper .philosophy__content__text h1 {
    font-size: 24px;
    margin-top: 14px;
  }
  .home-wrapper .philosophy__content__text h5 {
    font-size: 14px;
  }
  .home-wrapper .philosophy__content__text p {
    font-size: 12px;
    line-height: 22px;
  }
  .home-wrapper .philosophy__content__text p:first-of-type {
    margin-top: 36px;
  }
  .home-wrapper .subject__content__item__title h1 {
    font-size: 20px;
  }
  .home-wrapper .subject__content__item__text p {
    font-size: 14px;
    line-height: 22px;
  }
  .home-wrapper .gallery__content {
    width: 100%;
    max-width: 640px;
  }
  .home-wrapper .gallery__content__swiper #gallery-swiper {
    width: 640px;
    height: 435px;
  }
  .home-wrapper .gallery__content__controller {
    grid-template-rows: 80px 80px;
  }
  .home-wrapper .route {
    width: 640px;
  }
  .home-wrapper .route__content {
    gap: 36px;
    flex-direction: column;
  }
  .home-wrapper .route__content__image__item {
    width: 100%;
  }
  .home-wrapper .route__content__information {
    width: 100%;
  }
  .home-wrapper .route__content__information__table .route-time-grid > * {
    font-size: 14px;
  }
  .home-wrapper .route__content__information__table .route-time-grid .notice span {
    font-size: 12px;
  }
  .home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content label h1 {
    font-size: 14px;
  }
  .home-wrapper .route__content__information__table .toggle-list ul li .toggle-list__content__inner p {
    font-size: 12px;
    line-height: 22px;
  }
  .home-wrapper .route__content__information__table table tr th {
    font-size: 14px;
  }
  .home-wrapper .route__content__information__link a {
    margin: 0 auto;
  }
  .home-wrapper .faq {
    width: 640px;
  }
  .home-wrapper .faq__content .toggle-list__content__inner p {
    font-size: 12px;
    line-height: 22px;
  }
  .sub-wrapper > section {
    width: 600px;
  }
  .sub-wrapper .image-info__content__item__image {
    width: 320px;
  }
  .sub-wrapper .image-info.type2 .image-info__content__item, .sub-wrapper .image-info.type3 .image-info__content__item {
    flex-direction: column;
    gap: 36px;
  }
  .sub-wrapper .image-info.type2 .image-info__content__item__image, .sub-wrapper .image-info.type3 .image-info__content__item__image {
    width: 420px;
  }
  .sub-wrapper .image-info.black .image-info__content {
    width: 100%;
  }
  .sub-wrapper .image-info.black .image-info__content__item {
    flex-direction: column;
    gap: 36px;
  }
  .sub-wrapper .image-info.black .image-info__content__item__image {
    width: 420px;
    max-height: 325px;
  }
  .sub-wrapper .image-info.black .image-info__content__item p {
    margin-top: 16px;
  }
  .sub-wrapper .image-info.multiple .image-info__content {
    width: 100%;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item {
    flex-direction: column;
    gap: 72px;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item__image {
    width: 100%;
    aspect-ratio: initial;
    justify-content: center;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item__image img {
    width: 300px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__image {
    width: 420px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__text {
    flex-direction: column;
    gap: 32px;
    width: 420px;
  }
  .sub-wrapper .process__content ul {
    flex-wrap: wrap;
  }
  .sub-wrapper .process__content ul li {
    width: 160px;
    height: 160px;
  }
  .sub-wrapper .ultrasonic__content__image {
    gap: 18px;
  }
  .sub-wrapper .ultrasonic__content__image__item {
    flex: 1 1 0;
    width: 200px;
  }
  .sub-wrapper .ultrasonic__content__video {
    margin-top: 18px;
  }
  .sub-wrapper .ultrasonic__content__video video, .sub-wrapper .ultrasonic__content__video > * {
    height: 272px;
  }
  .sub-wrapper .image-only {
    width: 460px;
  }
  .sub-wrapper .image-only.small .image-only__content {
    width: 400px;
  }
  .sub-wrapper .image-only.multiple {
    width: 460px;
  }
  .sub-wrapper .image-only.multiple .image-only__content .before, .sub-wrapper .image-only.multiple .image-only__content .after {
    width: 300px;
  }
  .sub-wrapper .born__content {
    width: 600px;
  }
  .sub-wrapper .slider__content {
    flex-direction: column-reverse;
    width: 100%;
    gap: 32px;
  }
  .sub-wrapper .slider__content__swiper {
    margin-left: 0;
  }
  .sub-wrapper .slider__content__swiper #treat-swiper {
    width: 400px;
    height: 275.8px;
  }
  .sub-wrapper .grid01__content {
    grid-template-columns: repeat(3, 160px);
  }
  .sub-wrapper .grid01__content__item {
    height: 140px;
  }
  .sub-wrapper .image-grid__content ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-wrapper .image-grid__content ul li {
    height: 400px;
  }
  .sub-wrapper .grid02 {
    width: 620px;
  }
  .sub-wrapper .grid02__content__item {
    padding: 24px;
  }
  .sub-wrapper .grid02__content__item__text {
    margin-top: 52px;
  }
  .sub-wrapper .effective__content__swiper #effective-swiper {
    width: calc(100vw - (100vw - 840px) / 2);
  }
  .fixed-banner {
    right: 10px;
    gap: 5px;
  }
  .fixed-banner__item {
    width: 50px;
    height: 50px;
  }
  .fixed-banner__item a {
    font-size: 16px;
  }
  .footer-styled02__inner__information ul li {
    font-size: 12px;
    line-height: 22px;
  }
  .footer-styled02__copyright {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-styled02__copyright p {
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 820px) {
  .header-styled02 {
    display: none;
  }
  .m-header-styled01 {
    display: block;
  }
  .home-wrapper .philosophy__content {
    position: relative;
    display: initial;
  }
  .home-wrapper .philosophy__content__image {
    display: none;
    position: relative;
    width: 100%;
    height: 620px;
  }
  .home-wrapper .philosophy__content__image::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
  }
  .home-wrapper .philosophy__content__text {
    height: 620px;
    background-image: url("../imgs/1_HOME/special_01.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .home-wrapper .philosophy__content__text > * {
    position: relative;
    width: 600px;
    margin: 0 auto;
  }
  .home-wrapper .philosophy__content__text::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
  }
}
@media screen and (max-width: 680px) {
  html {
    font-size: 11px;
  }
  br.br-m {
    display: initial;
  }
  .home-wrapper .title-main + * {
    margin-top: 40px !important;
  }
  .home-wrapper .initial__content ul {
    font-size: 12px;
    line-height: 16px;
  }
  .home-wrapper .video {
    width: 368px;
  }
  .home-wrapper .video__content {
    margin-top: 72px;
  }
  .home-wrapper .video__content .video-con iframe {
    width: 368px;
  }
  .home-wrapper .special {
    width: 100%;
  }
  .home-wrapper .special::before {
    display: none;
  }
  .home-wrapper .special__title {
    padding: 0 15px;
  }
  .home-wrapper .special__title h1 {
    margin-top: 14px;
    font-size: 24px;
    letter-spacing: -0.6px;
    line-height: 38px;
    text-align: left;
  }
  .home-wrapper .special__title h3 {
    font-size: 12px;
    text-align: left;
  }
  .home-wrapper .special__content {
    margin-top: 40px;
    width: 368px;
  }
  .home-wrapper .special__content__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .home-wrapper .special__content__item:last-of-type {
    flex-direction: column-reverse;
    margin-top: 60px;
  }
  .home-wrapper .special__content__item p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 16px;
  }
  .home-wrapper .special__chart-content {
    width: 368px;
    flex-direction: column;
    gap: 16px;
  }
  .home-wrapper .special__chart-content__item {
    aspect-ratio: initial;
  }
  .home-wrapper .review .title-main {
    padding: 0 15px;
  }
  .home-wrapper .review__content__swiper #review-swiper {
    height: 240px;
  }
  .home-wrapper .review__content__swiper .review-card__content {
    margin-top: 16px;
  }
  .home-wrapper .review__content__swiper .review-card__content p {
    font-size: 12px;
  }
  .home-wrapper .review__content__swiper .review-card__link {
    margin-top: 16px;
  }
  .home-wrapper .profile__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .home-wrapper .profile__content__image {
    width: 368px;
    margin-left: 0;
  }
  .home-wrapper .profile__content__information {
    width: 368px;
  }
  .home-wrapper .profile__content__information__title h5 {
    font-size: 12px;
  }
  .home-wrapper .profile__image-content {
    position: relative;
  }
  .home-wrapper .profile__image-content::after {
    width: 80px;
  }
  .home-wrapper .profile__image-content__swiper #profile-swiper {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  .home-wrapper .philosophy__content__text {
    width: 100%;
    left: 0;
  }
  .home-wrapper .philosophy__content__text > * {
    width: 368px;
    margin: 0 auto;
  }
  .home-wrapper .philosophy__content__text h5 {
    font-size: 12px;
  }
  .home-wrapper .philosophy__content__text p {
    font-size: 14px;
  }
  .home-wrapper .subject {
    width: 368px;
  }
  .home-wrapper .subject__content {
    grid-template-columns: 1fr;
  }
  .home-wrapper .subject__content__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    aspect-ratio: initial;
  }
  .home-wrapper .subject__content__item > * {
    text-align: center;
  }
  .home-wrapper .gallery {
    width: 100%;
    padding: 120px 15px;
    box-sizing: border-box;
  }
  .home-wrapper .gallery__content__swiper #gallery-swiper {
    width: 100%;
    height: 285px;
  }
  .home-wrapper .gallery__content__controller {
    gap: 8px;
    grid-template-rows: 60px 60px;
  }
  .home-wrapper .route {
    width: 368px;
  }
  .home-wrapper .faq {
    width: 368px;
  }
  .home-wrapper .faq .toggle-list ul {
    padding: 0;
  }
  .home-wrapper .faq .toggle-list ul li {
    padding: 12px 0;
  }
  .home-wrapper .faq .toggle-list ul li .toggle-list__content label {
    width: 100%;
  }
  .home-wrapper .faq .toggle-list ul li .toggle-list__content label h1 {
    padding: 0 36px 0 12px;
    font-size: 14px;
    line-height: 24px;
  }
  .home-wrapper .faq .toggle-list ul li .toggle-list__content__arrow {
    right: 12px;
    width: 22px;
    height: 22px;
  }
  .home-wrapper .faq .toggle-list ul li .toggle-list__content__arrow::after {
    width: 8.708px;
    height: 4.354px;
  }
  .home-wrapper .faq .toggle-list ul li .toggle-list__content__inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .home-wrapper .faq .toggle-list ul li .toggle-list__content input[type=checkbox]:checked ~ .toggle-list__content__inner {
    padding-top: 16px;
  }
  .sub-wrapper .title-main h3 {
    font-size: 12px;
  }
  .sub-wrapper > section {
    width: 100%;
    padding: 100px 15px;
    box-sizing: border-box;
  }
  .sub-wrapper .solve__content {
    gap: 24px;
  }
  .sub-wrapper .solve__content p {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-wrapper .solve__title {
    margin-top: 40px;
  }
  .sub-wrapper .image-title::before {
    display: none;
    height: 120px;
  }
  .sub-wrapper .image-title__fixed {
    margin: 0;
    width: 100%;
    height: 300px;
  }
  .sub-wrapper .reservation {
    height: 200px;
  }
  .sub-wrapper .reservation__link a {
    width: 120px;
    height: 36px;
  }
  .sub-wrapper .image-info__content .hr.only-mobile {
    margin-top: 100px;
    width: calc(100% + 30px);
    transform: translate(-15px);
  }
  .sub-wrapper .image-info__content .hr.only-mobile + .image-info__content__item {
    margin-top: 100px;
  }
  .sub-wrapper .image-info__content__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 42px;
    row-gap: 32px;
  }
  .sub-wrapper .image-info__content__item:not(:first-of-type) {
    margin-top: 150px;
  }
  .sub-wrapper .image-info__content__item__image {
    width: 100%;
  }
  .sub-wrapper .image-info__content__item__text h1 {
    font-size: 24px;
  }
  .sub-wrapper .image-info__content__item__text h3 {
    font-size: 12px;
  }
  .sub-wrapper .image-info__content__item__text p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 18px;
  }
  .sub-wrapper .image-info__content .check-list {
    margin-top: 36px;
  }
  .sub-wrapper .image-info__content .check-list h4 {
    font-size: 18px;
    margin-top: 0;
  }
  .sub-wrapper .image-info__content .check-list ul li {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-wrapper .image-info.type2 .image-info__content__item__text h4, .sub-wrapper .image-info.type3 .image-info__content__item__text h4 {
    margin-top: 40px;
  }
  .sub-wrapper .image-info.type2 .image-info__content__item__image, .sub-wrapper .image-info.type3 .image-info__content__item__image {
    width: 100%;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item__image {
    gap: 16px;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item__image img {
    width: 200px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__image {
    width: 100%;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__text {
    flex-direction: column;
    gap: 32px;
    width: 420px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__text h1 {
    font-size: 24px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__text h3 {
    font-size: 14px;
  }
  .sub-wrapper .image-info.horizontal .image-info__content__item__text p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 12px;
  }
  .sub-wrapper .image-info.black .image-info__content__item__text__info p {
    margin-top: 8px;
  }
  .sub-wrapper .ultrasonic__title {
    width: 100%;
  }
  .sub-wrapper .ultrasonic__title h1 {
    font-size: 24px;
    text-align: left;
  }
  .sub-wrapper .ultrasonic__title p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
  .sub-wrapper .ultrasonic__content {
    margin-top: 40px;
    width: 100%;
  }
  .sub-wrapper .ultrasonic__content__image {
    flex-direction: column;
    gap: 18px;
  }
  .sub-wrapper .ultrasonic__content__image__item {
    flex: initial;
    width: 100%;
  }
  .sub-wrapper .ultrasonic__content__video {
    margin-top: 18px;
  }
  .sub-wrapper .ultrasonic__content__video > div, .sub-wrapper .ultrasonic__content__video > img {
    height: 220px;
  }
  .sub-wrapper .ultrasonic__content__video video {
    height: 100%;
  }
  .sub-wrapper .image-only {
    width: 100%;
  }
  .sub-wrapper .image-only.small .image-only__content {
    margin-top: 40px;
    width: 100%;
  }
  .sub-wrapper .image-only.multiple {
    width: 100%;
  }
  .sub-wrapper .image-only.multiple .image-only__content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .sub-wrapper .image-only.multiple .image-only__content .before, .sub-wrapper .image-only.multiple .image-only__content .after {
    width: 100%;
  }
  .sub-wrapper .image-only__content {
    margin-top: 40px;
  }
  .sub-wrapper .image-only__content h5 {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
  .sub-wrapper .born__content {
    width: 100%;
    height: 500px;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .sub-wrapper .born__content .title-main {
    position: relative;
    z-index: 99;
  }
  .sub-wrapper .born__content .check-list {
    position: relative;
    z-index: 99;
    margin-top: 36px;
  }
  .sub-wrapper .born__content .check-list ul {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .sub-wrapper .born__content .check-list ul li {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-wrapper .born__content__image::after {
    background-position: 0;
  }
  .sub-wrapper .slider__content {
    width: 100%;
    gap: 32px;
  }
  .sub-wrapper .slider__content__swiper {
    margin-left: 0;
  }
  .sub-wrapper .slider__content__swiper #treat-swiper {
    width: 320px;
    height: 200px;
    margin: 0 36px;
  }
  .sub-wrapper .slider__content__swiper .swiper-button-prev::after,
  .sub-wrapper .slider__content__swiper .swiper-button-next::after {
    width: 10px;
    height: 20px;
  }
  .sub-wrapper .slider__content__text {
    width: 100%;
  }
  .sub-wrapper .slider__content__text ul {
    margin-top: 32px;
  }
  .sub-wrapper .slider__content__text ul li {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-wrapper .grid01__content {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .sub-wrapper .grid01__content__item {
    height: 120px;
  }
  .sub-wrapper .grid02 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .sub-wrapper .grid02__content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: initial;
    margin-top: 40px;
  }
  .sub-wrapper .grid02__content__item__text {
    margin-top: 52px;
  }
  .sub-wrapper .grid02__content__item__text p {
    font-size: 12px;
  }
  .sub-wrapper .effective__image {
    margin-top: 40px;
  }
  .sub-wrapper .effective__content {
    margin-top: 16px;
  }
  .sub-wrapper .effective__content__swiper {
    padding: 0 48px;
  }
  .sub-wrapper .effective__content__swiper #effective-swiper {
    width: calc(100vw - 48px - 24px);
  }
  .sub-wrapper .effective__content__swiper .swiper-wrapper .swiper-slide .effective-card__content p {
    font-size: 12px;
    line-height: 22px;
  }
  .sub-wrapper .treatment__content__grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .sub-wrapper .treatment__content__grid__item a .title h5 {
    font-size: 18px;
  }
  .sub-wrapper .treatment__content__grid__item a .title p {
    font-size: 12px;
    line-height: 22px;
  }
  .sub-wrapper .treatment__content__grid__item a .content {
    margin-top: 14px;
  }
  .sub-wrapper .treatment__content__grid__item a .content p {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-wrapper .process__content {
    margin-top: 40px;
  }
  .sub-wrapper .process__content ul {
    gap: 16px;
  }
  .sub-wrapper .process__content ul li span {
    font-size: 12px;
  }
  .sub-wrapper .process__content ul li p {
    font-size: 14px;
    line-height: 22px;
  }
  .sub-wrapper .image-grid ul li .title h1 {
    font-size: 18px;
  }
  .sub-wrapper .image-grid ul li .content {
    flex: 1 1 0;
    opacity: 1;
  }
  .sub-wrapper .image-grid ul li .content p {
    font-size: 14px;
    line-height: 22px;
  }
  .title-main h1 {
    margin-top: 14px;
    font-size: 24px;
    letter-spacing: -0.6px;
    line-height: 38px;
    text-align: left;
  }
  .title-main h3 {
    font-size: 12px;
    text-align: left;
  }
  .title-main p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 16px;
    text-align: left;
  }
  .check-list ul {
    gap: 6px;
  }
  .check-list ul li::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    background-size: 8px 8px;
  }
  .check-list.horizontal ul {
    display: grid;
    grid-template-columns: 1fr 3fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .only-pc {
    display: none;
  }
  .only-mobile {
    display: block;
  }
}
@media screen and (max-width: 510px) {
  .sub-wrapper .image-info.multiple .image-info__content__item {
    gap: 32px;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item__image {
    flex-direction: column;
    gap: 16px;
  }
  .sub-wrapper .image-info.multiple .image-info__content__item__image img {
    width: 100%;
  }
  .sub-wrapper .image-grid__content ul {
    grid-template-columns: 1fr;
  }
  .sub-wrapper .image-grid__content ul li {
    height: 110vw;
  }
  .hr.only-pc + section:not(:first-of-type) {
    padding-top: 0;
  }
}
@media screen and (max-width: 430px) {
  .sub-wrapper .image-title__fixed {
    width: 100%;
  }
  .sub-wrapper .grid02 {
    width: 100%;
  }
  .sub-wrapper .grid02__content__item {
    aspect-ratio: initial;
  }
  .sub-wrapper .grid02__content__item__text {
    margin-top: 36px;
  }
  .sub-wrapper .treatment__content__grid {
    grid-template-columns: 1fr;
  }
}