main {
  font-size: 16px;
  line-height: 1;
  max-width: 100dvw;
  overflow: hidden;
}
main .main__section {
  position: relative;
}
main .main__more {
  padding: 1em 2.3em;
  border-radius: 100em;
  font-weight: 500;
  color: #fff;
  background-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  transition: 0.4s;
  transition-property: color, background-color;
}
main .main__more:hover {
  color: var(--theme-color);
  background-color: rgba(255, 255, 255, 0.7333333333);
}
main .main__title {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-family: var(--minion);
  font-weight: normal;
  color: var(--c-taupe);
}
main .main__title * {
  font-weight: inherit;
}
main .main__title > *:first-child {
  opacity: 0.5;
}
main .main__title .title__bar {
  width: 2em;
  height: 1px;
  margin: 0 1em;
  background: var(--c-taupe);
}
main .main__wrapper {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
main .main__wrapper.--marble-1 {
  background-image: url(/img/main/bg-marble-1.webp);
}
main .main__wrapper.--marble-2 {
  background-image: url(/img/main/bg-marble-2.webp);
}

@media screen and (max-width: 1280px) {
  main {
    max-width: 100%;
  }
}
/* =============== .section__visual =============== */
.section__visual {
  height: 100dvh;
  padding: calc(10% + 60px) 0 10%;
  background: url(/img/main/visual/background.webp) center/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.section__visual .visual__title {
  font-size: 110px;
  font-family: var(--Seasons);
  font-weight: normal;
  display: inline-flex;
  align-items: center;
}
.section__visual .visual__title span {
  opacity: 0.5;
}
.section__visual .visual__title .title__bar {
  width: 1.7em;
  height: 2px;
  margin: 0 0.3em;
  background: #fff;
}
.section__visual .visual__title strong {
  font-style: italic;
  font-weight: normal;
}
.section__visual .visual__title strong em {
  font-style: normal;
}
.section__visual .visual__desc p {
  line-height: 1.5;
  margin-bottom: 2em;
}
.section__visual .visual__desc p strong {
  display: block;
}
@media screen and (max-width: 1400px) {
  .section__visual .visual__title {
    font-size: 90px;
  }
}
/* =============== section__clinic =============== */
.section__clinic {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 0;
}
.section__clinic .clinic__title.main__title {
  margin-bottom: 1.7em;
}
.section__clinic .clinic__title.main__title > *:first-child {
  font-size: 40px;
  opacity: 1;
  color: var(--c-brown);
}
.section__clinic .clinic__list {
  display: flex;
  justify-content: space-between;
}
.section__clinic .clinic__list .list__card {
  width: 320px;
  aspect-ratio: 320/434;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: var(--c-brown);
}
.section__clinic .clinic__list .list__card::before, .section__clinic .clinic__list .list__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.section__clinic .clinic__list .list__card::after {
  opacity: 0;
  mix-blend-mode: overlay;
}
.section__clinic .clinic__list .list__card {
  transition: padding 0.4s ease;
}
.section__clinic .clinic__list .list__card::before, .section__clinic .clinic__list .list__card::after,
.section__clinic .clinic__list .list__card * {
  transition: 0.4s ease;
}
.section__clinic .clinic__list .list__card dt,
.section__clinic .clinic__list .list__card dd span {
  position: relative;
  left: 0;
  translate: 0 0;
  z-index: 10;
}
.section__clinic .clinic__list .list__card h3 {
  font-size: 20px;
  font-family: var(--minion);
  font-weight: normal;
  opacity: 0.5;
  position: relative;
  right: 0;
  z-index: 10;
}
.section__clinic .clinic__list .list__card h3 span {
  position: absolute;
  top: 0;
  right: 0;
  translate: 0 0;
}
.section__clinic .clinic__list .list__card dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section__clinic .clinic__list .list__card dt {
  font-size: 22px;
  font-weight: 500;
}
.section__clinic .clinic__list .list__card dd {
  width: 100%;
  padding-top: 1.5em;
  line-height: 1.7;
  letter-spacing: -0.04em;
  position: relative;
  display: flex;
  flex-direction: column;
}
.section__clinic .clinic__list .list__card dd span {
  width: fit-content;
}
.section__clinic .clinic__list .list__card:hover {
  padding: 150px 30px;
}
.section__clinic .clinic__list .list__card:hover::before {
  opacity: 0;
}
.section__clinic .clinic__list .list__card:hover::after {
  opacity: 1;
}
.section__clinic .clinic__list .list__card:hover h3 span {
  right: 50%;
  translate: 50% 0;
}
.section__clinic .clinic__list .list__card:hover dt,
.section__clinic .clinic__list .list__card:hover dd span {
  left: 50%;
  translate: -50% 0;
}
.section__clinic .clinic__list .list__card[data-label=Polysomnography]::before,
.section__clinic .clinic__list .list__card[data-label=Polysomnography]::after {
  background: url(/img/main/clinic/Polysomnography.png) center/cover no-repeat;
}
.section__clinic .clinic__list .list__card[data-label=Snoring]::before,
.section__clinic .clinic__list .list__card[data-label=Snoring]::after {
  background: url(/img/main/clinic/Snoring.png) center/cover no-repeat;
}
.section__clinic .clinic__list .list__card[data-label=Sleep]::before,
.section__clinic .clinic__list .list__card[data-label=Sleep]::after {
  background: url(/img/main/clinic/Sleep.png) center/cover no-repeat;
}
.section__clinic .clinic__list .list__card[data-label=Mental]::before,
.section__clinic .clinic__list .list__card[data-label=Mental]::after {
  background: url(/img/main/clinic/Mental.png) center/cover no-repeat;
}

@media screen and (max-width: 1500px) {
  .section__clinic .clinic__list .list__card {
    width: 24%;
  }
}
/* =============== flow__slider =============== */
.flow__slider {
  font-size: 220px;
  font-family: var(--minion);
  color: var(--c-brown);
  opacity: 0.1;
  white-space: nowrap;
  margin-bottom: 50px;
}
.flow__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.flow__slider .swiper-slide {
  width: 11.5em;
}

/* =============== section__doctors =============== */
.section__doctors {
  width: 90%;
  margin: 0 auto 160px;
  max-width: 1400px;
  white-space: nowrap;
}
.section__doctors .main__title {
  justify-content: center;
  height: 50px;
}
.section__doctors .doctors__title {
  width: 500px;
  margin: 0 auto;
  position: relative;
}
.section__doctors .doctors__title .title__img {
  height: 600px;
  background: url(/img/main/doctors/BAK-GI-HWAN.png);
}
.section__doctors .doctors__title .title__wrapper {
  position: absolute;
  bottom: 0;
  height: 600px;
  left: 100%;
  translate: -60px 0;
  padding: 80px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section__doctors .doctors__title .title__wrapper .title__slogan {
  display: flex;
  flex-direction: column;
  font-family: var(--Seasons);
  font-size: 60px;
  color: var(--c-brown);
  line-height: 1.3;
}
.section__doctors .doctors__title .title__wrapper .title__slogan em {
  color: var(--theme-color);
}
.section__doctors .doctors__title .title__wrapper a {
  color: var(--theme-color);
  margin-left: 100px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.section__doctors .doctors__title .title__wrapper a strong {
  padding-right: 0.3em;
}
.section__doctors .doctors__title .title__wrapper a::after {
  content: "";
  width: 1.5em;
  height: 1em;
  background: url(/img/common/icon/arrow-tail.svg) center/contain no-repeat;
  margin-left: 0.3em;
  transition: 0.3s;
}
.section__doctors .doctors__title .title__wrapper a:hover::after {
  margin-left: 0.8em;
}
.section__doctors .doctors__profile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% - 250px);
  padding-bottom: 45px;
}
.section__doctors .doctors__profile .profile__name .logo__symbol {
  width: 50px;
  opacity: 0.2;
}
.section__doctors .doctors__profile .profile__name h3 {
  font-size: 26px;
  font-weight: normal;
  color: var(--theme-deep);
  padding: 25px 0 15px;
}
.section__doctors .doctors__profile .profile__name p {
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--theme-color);
  padding: 8px 12px 10px;
  border-radius: 100em;
  width: fit-content;
}
.section__doctors .doctors__profile .profile__career {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-top: 2em;
  font-weight: 500;
}
.section__doctors .doctors__profile .profile__career li {
  display: flex;
  align-items: center;
  color: rgba(77, 92, 90, 0.5);
}
.section__doctors .doctors__profile .profile__career li::before {
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 10px;
  background: var(--theme-deep);
}

@media screen and (max-width: 1400px) {
  .section__doctors .doctors__title .title__wrapper .title__slogan {
    font-size: 50px;
  }
  .section__doctors .doctors__profile {
    width: calc(50% - 180px);
  }
}
/* =============== section__interview =============== */
.section__video {
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 160px;
}
.section__video .video__hd {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.section__video .video__wrapper {
  display: flex;
  width: 100%;
}
.section__video .video__area {
  flex: 1;
  position: relative;
  background: #000;
  overflow: hidden;
  height: 630px;
}
.section__video .video__area iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1120px;
  height: 630px;
  border: none;
}
.section__video .video__tab {
  width: 800px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(67, 112, 106, 0.2784313725);
  border-bottom: 1px solid rgba(67, 112, 106, 0.2784313725);
}
.section__video .tab__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 50px;
  cursor: pointer;
  border-bottom: 1px solid rgba(67, 112, 106, 0.2784313725);
  transition: background 0.2s ease;
}
.section__video .tab__item:last-child {
  border-bottom: none;
}
.section__video .tab__item:hover {
  background: rgba(111, 160, 155, 0.2117647059);
}
.section__video .tab__item.--active {
  background: rgba(111, 160, 155, 0.2117647059);
}
.section__video .tab__item.--active .tab__text {
  color: #4d5c5a;
  font-weight: 500;
}
.section__video .tab__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #7ab5a8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.section__video .tab__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.section__video .tab__icon.--pause {
  gap: 3px;
}
.section__video .tab__icon.--pause img {
  display: none;
}
.section__video .tab__icon.--pause::before, .section__video .tab__icon.--pause::after {
  content: "";
  display: block;
  width: 3px;
  height: 12px;
  background: #fff;
  border-radius: 1px;
  transition: opacity 0.3s ease;
}
.section__video .tab__icon.--play {
  background: transparent;
}
.section__video .tab__icon.--play img {
  display: block;
}
.section__video .tab__text {
  font-size: 22px;
  line-height: 1.5;
  color: #444;
  word-break: keep-all;
  transition: color 0.2s ease;
}

/* =============== section__tags =============== */
.section__tags {
  display: flex;
}
.section__tags .tags__wrapper {
  width: 50%;
  height: 600px;
  transition: width 1s;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section__tags:hover .tags__wrapper:hover {
  width: 54%;
}
.section__tags:hover .tags__wrapper:not(:hover) {
  width: 46%;
}
.section__tags .tags__wrapper.--sleep {
  justify-content: flex-end;
  background-image: url(/img/main/tags/sleep.webp);
}
.section__tags .tags__wrapper.--sleep .tags__container {
  padding-right: clamp(70px, 20%, 140px);
}
.section__tags .tags__wrapper.--sleep .tags__container .tags__list {
  padding-right: 2em;
}
.section__tags .tags__wrapper.--mental {
  justify-content: flex-start;
  background-image: url(/img/main/tags/mental.webp);
}
.section__tags .tags__wrapper.--mental .tags__container {
  padding-left: clamp(70px, 20%, 140px);
}
.section__tags .tags__wrapper.--mental .tags__list {
  width: 22em;
}
.section__tags .tags__container {
  width: 90%;
  max-width: 700px;
  color: #fff;
}
.section__tags .tags__title {
  font-size: 60px;
  font-family: var(--minion);
  font-weight: normal;
  display: flex;
  flex-direction: column;
}
.section__tags .tags__title > * {
  font-weight: normal;
  font-style: normal;
}
.section__tags .tags__title span {
  font-size: 26px;
  font-family: var(--noto);
  padding: 1em 0 2em;
}
.section__tags .tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.section__tags .tags__list a {
  display: inline-block;
  border: 1px solid #fff;
  padding: 8px 20px 10px;
  border-radius: 10em;
  opacity: 0.7;
  transition: 0.4s;
}
.section__tags .tags__list a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1280px) {
  .section__tags .tags__wrapper.--sleep .tags__container .tags__list {
    width: 23em;
    padding-right: 0;
  }
}
/* =============== section__therapy =============== */
.section__therapy {
  padding: 160px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section__therapy .therapy__hd {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__therapy .therapy__hd .main__title {
  margin-bottom: 0.5em;
}
.section__therapy .therapy__hd p {
  font-weight: 500;
  color: var(--c-taupe);
  padding: 25px 0 45px;
}
.section__therapy .therapy__slogan {
  font-size: 150px;
  font-weight: normal;
  color: var(--c-brown);
  opacity: 0.1;
}
.section__therapy .therapy__desc {
  padding: 40px 0 160px;
}
.section__therapy .therapy__desc .logo__symbol {
  width: 46px;
  margin-bottom: 40px;
  opacity: 0.2;
}
.section__therapy .therapy__desc .main__title {
  justify-content: center;
  margin-bottom: 40px;
}
.section__therapy .therapy__desc .main__title > *:first-child {
  opacity: 1;
  color: var(--c-taupe);
}
.section__therapy .therapy__desc .main__title strong {
  font-size: 20px;
  font-weight: 500;
}
.section__therapy .therapy__desc p {
  line-height: 2;
  color: var(--c-beige);
  font-weight: 500;
}
.section__therapy .therapy__slider {
  position: relative;
  width: 100%;
}
.section__therapy .therapy__slider .swiper {
  width: 100%;
  overflow: visible;
}
.section__therapy .therapy__slider .swiper-slide {
  width: 1400px;
  height: 660px;
  flex-shrink: 0;
}
.section__therapy .therapy__slider .swiper-slide .swiper-material-wrapper {
  top: auto;
  bottom: 10px;
  height: 565px;
  border-radius: 30px;
  overflow: hidden;
  transition: 1s;
}
.section__therapy .therapy__slider .swiper-slide .slider__txt {
  position: absolute;
  bottom: 80px;
  left: 930px;
  color: #fff;
  text-align: left;
  opacity: 0;
  transition: 1s;
}
.section__therapy .therapy__slider .swiper-slide .slider__txt dt {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 0.8em;
}
.section__therapy .therapy__slider .swiper-slide .slider__txt dd {
  font-size: 16px;
  line-height: 2;
}
.section__therapy .therapy__slider .swiper-slide-active .swiper-material-wrapper {
  height: 660px;
  bottom: 0;
}
.section__therapy .therapy__slider .swiper-slide-active .slider__txt {
  opacity: 1;
}
.section__therapy .therapy__slider .swiper__paging {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
  translate: -50% 0;
  width: 1400px;
  padding: 0 0 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  pointer-events: none;
  font-size: 44px;
}
.section__therapy .therapy__slider .swiper__paging button {
  font-family: var(--minion);
  color: #fff;
  border: 0;
  background: none;
  width: fit-content;
  line-height: 1;
  display: flex;
  align-items: center;
  pointer-events: auto;
}
.section__therapy .therapy__slider .swiper__paging button strong {
  font-weight: normal;
  display: flex;
  align-items: center;
}
.section__therapy .therapy__slider .swiper__paging button strong::before, .section__therapy .therapy__slider .swiper__paging button strong::after {
  width: 0;
  opacity: 0;
  overflow: hidden;
  font-family: var(--minion);
  font-style: italic;
  margin-top: -0.3em;
  transition: 0.5s;
}
.section__therapy .therapy__slider .swiper__paging button strong::before {
  content: "(";
}
.section__therapy .therapy__slider .swiper__paging button strong::after {
  content: ")";
}
.section__therapy .therapy__slider .swiper__paging button span {
  font-size: 16px;
  font-family: var(--noto);
  font-style: normal;
  padding-left: 0;
  opacity: 0;
  margin-top: -0.4em;
  transition: 1s;
}
.section__therapy .therapy__slider .swiper__paging button.--active {
  font-family: var(--Seasons);
  font-style: italic;
}
.section__therapy .therapy__slider .swiper__paging button.--active strong::before, .section__therapy .therapy__slider .swiper__paging button.--active strong::after {
  width: 0.5em;
  opacity: 1;
}
.section__therapy .therapy__slider .swiper__paging button.--active span {
  opacity: 1;
  padding-left: 1em;
}
.section__therapy .therapy__slider .swiper__navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  translate: -50% 0;
  width: 1540px;
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section__therapy .therapy__slider .swiper__navigation .swiper__nav {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.4s;
}
.section__therapy .therapy__slider .swiper__navigation .swiper__nav:hover {
  transform: scale(1.2);
}
.section__therapy .therapy__slider .swiper__navigation .swiper__nav::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/14;
  background: url(/img/common/icon/arrow-tail.svg) center/contain no-repeat;
  filter: brightness(100);
}
.section__therapy .therapy__slider .swiper__navigation .swiper__nav.--prev::before {
  transform: rotateY(180deg);
}
.section__therapy .therapy__slider .swiper-slide[data-therapy=Mind] .swiper-material-wrapper {
  background: url(/img/main/therapy/slider/Mind.webp) center/cover no-repeat;
}
.section__therapy .therapy__slider .swiper-slide[data-therapy=Personal] .swiper-material-wrapper {
  background: url(/img/main/therapy/slider/Personal.webp) center/cover no-repeat;
}
.section__therapy .therapy__slider .swiper-slide[data-therapy=Accurate] .swiper-material-wrapper {
  background: url(/img/main/therapy/slider/Accurate.webp) center/cover no-repeat;
}
.section__therapy .therapy__slider .swiper-slide[data-therapy=Healthy] .swiper-material-wrapper {
  background: url(/img/main/therapy/slider/Healthy.webp) center/cover no-repeat;
}

@media screen and (max-width: 1600px) {
  .section__therapy .therapy__slider .swiper__paging,
  .section__therapy .therapy__slider .swiper-slide {
    width: 1200px;
  }
  .section__therapy .therapy__slider .swiper-slide .slider__txt {
    left: 720px;
  }
  .section__therapy .therapy__slider .swiper__paging {
    padding: 0 0 80px 50px;
  }
  .section__therapy .therapy__slider .swiper__navigation {
    width: 1340px;
  }
}
@media screen and (max-width: 1500px) {
  .section__therapy .therapy__slogan {
    font-size: 120px;
  }
  .section__therapy video {
    width: 1200px;
  }
}
@media screen and (max-width: 1400px) {
  .section__therapy .therapy__slider .swiper__paging,
  .section__therapy .therapy__slider .swiper-slide {
    width: 1000px;
  }
  .section__therapy .therapy__slider .swiper-slide .slider__txt {
    left: 540px;
    bottom: 50px;
  }
  .section__therapy .therapy__slider .swiper__paging {
    font-size: 30px;
  }
  .section__therapy .therapy__slider .swiper-slide .slider__txt dt {
    font-size: 24px;
  }
  .section__therapy .therapy__slider .swiper__navigation {
    width: 1140px;
  }
  .section__therapy .therapy__slider .swiper__paging {
    padding: 0 0 50px 30px;
  }
}
/* =============== section__sleep =============== */
.section__sleep {
  height: 500px;
  background-image: url(/img/main/sleep/bg.webp);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.section__sleep .main__title {
  font-size: 80px;
  font-family: var(--Seasons);
  font-weight: normal;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5em;
  color: #fff;
}
.section__sleep .main__title span {
  opacity: 0.2;
}
.section__sleep .main__title .title__bar {
  width: 0.75em;
  height: 1px;
  margin: 0 0.7em;
  background: #fff;
}
.section__sleep .main__title strong {
  font-weight: normal;
}
.section__sleep .main__title + p {
  font-size: 26px;
  margin-bottom: 1em;
}
.section__sleep p + p {
  line-height: 2;
  opacity: 0.8;
}

@media screen and (max-width: 1400px) {
  .section__sleep .main__title {
    font-size: 70px;
  }
}
/* =============== section__interior =============== */
.section__interior {
  padding-top: 170px;
}
.section__interior .interior__hd {
  color: var(--c-beige);
  padding-bottom: 70px;
}
.section__interior .interior__hd > strong {
  font-size: 26px;
  color: var(--c-taupe);
  margin: 0.7em 0 1em;
}
.section__interior .main__more {
  display: block;
  margin: -50px auto 0;
  width: fit-content;
  position: relative;
  z-index: 10;
}
.section__interior .interior__slider {
  display: flex;
  justify-content: space-between;
  max-width: 2000px;
  margin: 0 auto;
}
.section__interior .interior__slider::before, .section__interior .interior__slider::after {
  content: "";
  position: relative;
  top: 190px;
  width: 135px;
  height: 250px;
  background: url(/img/main/interior/dot.png) no-repeat;
}
.section__interior .interior__slider::after {
  transform: rotateY(180deg);
}
.section__interior .interior__slider .slider__wrapper {
  width: 1730px;
  overflow: hidden;
  display: flex;
  gap: 10px;
}
.section__interior .interior__slider .interior__img {
  width: 100%;
  height: 390px;
}
.section__interior .swiper__side {
  width: 520px;
}
.section__interior .swiper__side .swiper-material-wrapper {
  transition: 1s;
}
.section__interior .swiper__side .swiper-slide {
  width: 160px;
  height: 510px;
  cursor: pointer;
  transition: 1s;
}
.section__interior .swiper__side .swiper-slide .interior__img {
  position: relative;
  top: 0;
  border-radius: 200px;
  transition: 1s;
  opacity: 0;
}
.section__interior .swiper__side .swiper-slide.swiper-slide-visible .interior__img {
  opacity: 1;
}
.section__interior .swiper__side.--left .swiper-slide-prev .interior__img,
.section__interior .swiper__side.--left .swiper-slide-visible .interior__img {
  top: 120px;
}
.section__interior .swiper__side.--left .swiper-slide-visible + .swiper-slide-visible .interior__img {
  top: 60px;
}
.section__interior .swiper__side.--left .swiper-slide-visible + .swiper-slide-visible + .swiper-slide-visible .interior__img {
  top: 0px;
}
.section__interior .swiper__side.--right .swiper-slide-visible .interior__img {
  top: 0px;
}
.section__interior .swiper__side.--right .swiper-slide-visible + .swiper-slide-visible .interior__img {
  top: 60px;
}
.section__interior .swiper__side.--right .swiper-slide-visible + .swiper-slide-visible + .swiper-slide-visible .interior__img,
.section__interior .swiper__side.--right .swiper-slide-visible + .swiper-slide-visible + .swiper-slide-visible + .swiper-slide .interior__img {
  top: 120px;
}
.section__interior .swiper__center {
  width: 650px;
}
.section__interior .swiper-slide.--1 .interior__img {
  background: url(/img/main/interior/slide/1.png) center/cover no-repeat;
}
.section__interior .swiper-slide.--2 .interior__img {
  background: url(/img/main/interior/slide/2.png) center/cover no-repeat;
}
.section__interior .swiper-slide.--3 .interior__img {
  background: url(/img/main/interior/slide/3.png) center/cover no-repeat;
}
.section__interior .swiper-slide.--4 .interior__img {
  background: url(/img/main/interior/slide/4.png) center/cover no-repeat;
}
.section__interior .swiper-slide.--5 .interior__img {
  background: url(/img/main/interior/slide/5.png) center/cover no-repeat;
}
.section__interior .swiper-slide.--6 .interior__img {
  background: url(/img/main/interior/slide/6.png) center/cover no-repeat;
}/*# sourceMappingURL=main.min.css.map */