@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
font-family: vdl-v7gothic, sans-serif;
eb=800, b=700, m=500

font-family: museo-sans-condensed, sans-serif;
font-weight: 700;
*/
html {
  font-size: 14px;
  font-family: vdl-v7gothic, sans-serif;
  font-weight: 500;
  color: #391F0A;
}
html #content, html header.global {
  visibility: hidden;
}
@media only screen and (min-width: 1367px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

html.wf-active #content, html.wf-active header.global {
  visibility: visible;
}

body {
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 1rem 1rem;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #5C2E0A;
}

.hamburger-box {
  width: 32px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 32px;
  height: 2px;
  background-color: #5C2E0A;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger {
  position: absolute;
  z-index: 10;
  top: 0.8rem;
  right: 1rem;
}

header.mx {
  max-width: none;
}

header {
  text-align: center;
  position: relative;
}
header .sns {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 1024px) {
  header .sns {
    position: absolute;
    right: 2rem;
    top: 1rem;
    width: 3.5rem;
  }
}
header .sns a {
  width: 1.5rem;
  display: block;
}
header .sns a img {
  display: block;
}
@media only screen and (max-width: 1023px) {
  header .sns {
    width: 5rem;
    margin: 1rem auto 0;
  }
  header .sns a {
    width: 2rem;
    border-right: none;
  }
}
@media only screen and (min-width: 1024px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 4rem;
  }
}
@media only screen and (max-width: 1023px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 22222;
    background: white;
    height: 5rem;
  }
}
header .tel {
  display: block;
  position: absolute;
  right: 6.5rem;
  top: 1.25rem;
  width: 28rem;
}
@media only screen and (max-width: 1023px) {
  header .tel {
    display: none;
  }
}
header .logo {
  width: 12rem;
  margin-top: -1.5rem;
  display: block;
}
@media only screen and (max-width: 1280px) {
  header .logo {
    width: 10rem;
  }
}
@media only screen and (max-width: 1023px) {
  header .logo {
    width: 11rem;
    margin-top: 0.75rem;
    position: relative;
  }
}
header nav.sd {
  display: none;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  header nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: white;
    z-index: 1;
  }
}
header nav a {
  color: #5C2E0A;
  display: block;
  padding: 0.5em 1.8em;
  border-right: 1px solid #A8712C;
  font-weight: 700;
  line-height: 1.7em;
  letter-spacing: 0.15em;
}
header nav a span {
  display: block;
  font-family: museo-sans-condensed, sans-serif;
  font-weight: 700;
  color: #D94A0A;
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1280px) {
  header nav a {
    padding: 0.5em 1em;
  }
}
@media only screen and (max-width: 1023px) {
  header nav a {
    padding: 1em 0;
    line-height: 1.4rem;
  }
}
header nav a.contact_sd {
  border-right: none;
}
@media only screen and (max-width: 1023px) {
  header nav a.contact_sd {
    color: white;
    background: #A8712C;
    width: 14rem;
    margin: 1.2rem auto 0;
    border-radius: 2rem;
  }
}
header a.contact {
  color: white;
  display: block;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: #A8712C;
  line-height: 4rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  border-radius: 2rem;
}

.init_anim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 23333;
  background: white;
}
.init_anim div {
  opacity: 0;
}
.init_anim img {
  display: block;
  width: 7rem;
}

@media only screen and (min-width: 1024px) {
  .sd {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .desktop {
    display: none !important;
  }
}
html {
  scroll-behavior: smooth;
}

.mx {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1279px) {
  .mx {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .mx {
    max-width: 40rem;
  }
}

body {
  background: url("./assets/tile.png") repeat;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #391F0A;
}

.underline {
  text-decoration: underline;
}

main {
  position: relative;
}
main .txt {
  text-shadow: 0 0.1em 3px rgba(255, 255, 255, 0.9);
}
@media only screen and (min-width: 1024px) {
  main .txt {
    width: 27rem;
    position: absolute;
    top: 7rem;
    z-index: 10;
  }
}
main .txt h1 {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 2em;
  margin-bottom: 1em;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1023px) {
  main .txt h1 {
    text-align: center;
    font-size: 1.3rem;
  }
}
main .txt p {
  padding-left: 1.5rem;
  letter-spacing: 0.15em;
  max-width: 24rem;
  width: 100%;
  font-weight: 700;
  line-height: 2.8em;
  text-align: justify;
}
@media only screen and (max-width: 1023px) {
  main .txt p {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }
}
main .swiper-container {
  height: calc(100vh - 13.7rem);
  min-height: 30vw;
  position: relative;
  padding-bottom: 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (min-width: 1024px) {
  main .swiper-container {
    width: calc(100% - 29.7rem);
    margin-left: auto;
    margin-right: 7.4rem;
    max-height: 48rem;
  }
}
@media only screen and (max-width: 1023px) {
  main .swiper-container {
    width: 100%;
    max-width: 40rem;
    max-height: 30rem;
    height: 70vw;
    margin-top: 7rem;
    margin-left: auto;
    margin-right: auto;
  }
}
main .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 5rem;
}
@media only screen and (max-width: 1023px) {
  main .swiper-slide {
    border-radius: 2rem;
  }
}
main .s1 {
  background-image: url("./assets/slide1.jpg");
}
main .s2 {
  background-image: url("./assets/slide2.jpg");
}
main .s3 {
  background-image: url("./assets/slide6.jpg");
}
main .s4 {
  background-image: url("./assets/slide7.jpg");
}
main .s5 {
  background-image: url("./assets/slide3.jpg");
}
@media only screen and (max-width: 768px) {
  main .s1 {
    background-image: url("./assets/slide_s1.jpg");
  }
  main .s2 {
    background-image: url("./assets/slide_s2.jpg");
  }
  main .s3 {
    background-image: url("./assets/slide_s6.jpg");
  }
  main .s4 {
    background-image: url("./assets/slide_s7.jpg");
  }
  main .s5 {
    background-image: url("./assets/slide_s3.jpg");
  }
}
main .swiper-pagination-bullets {
  bottom: 1.5rem !important;
}
main .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  text-align: center;
  opacity: 1;
  background: #a8712c;
}
main .swiper-pagination-bullet-active {
  opacity: 0.4;
}
main .logo {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 8rem;
  width: 11rem;
  display: block;
}
@media only screen and (max-width: 1023px) {
  main .logo {
    display: none;
  }
}

section {
  padding-top: 8rem;
  padding-bottom: 2rem;
}

section > h2, h2.section_head {
  background-color: white;
  color: #5C2E0A;
  font-size: 1.7rem;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  padding: 0.3em 1em;
  border-radius: 2rem;
  font-weight: 800;
  margin-bottom: 4rem;
}
section > h2 img, h2.section_head img {
  margin-left: 1.2rem;
  margin-right: 0.3rem;
}
section > h2 span, h2.section_head span {
  font-family: museo-sans-condensed, sans-serif;
  font-weight: 700;
  color: #D94A0A;
  color: #D94A0A;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  section > h2, h2.section_head {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  section > h2 img, h2.section_head img {
    width: 0.8rem;
    margin-left: 0em;
  }
  section > h2 span, h2.section_head span {
    line-height: 2em;
    font-size: 0.8rem;
    display: block;
  }
}

dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: 0.5em;
}

#about .top, #about .bottom {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  #about .top, #about .bottom {
    width: 82.7%;
  }
}
@media only screen and (min-width: 769px) {
  #about .top, #about .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #about .top .left, #about .top .right, #about .bottom .left, #about .bottom .right {
    width: 42.5%;
  }
}
#about .top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}
#about .top .left h3 {
  font-size: 1.43rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 768px) {
  #about .top .left h3 {
    text-align: center;
  }
}
#about .top .left p {
  font-size: 1.14rem;
  line-height: 2.2em;
  text-align: justify;
}
#about .top .right {
  text-align: center;
}
#about .top .right .portrait {
  overflow: hidden;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  #about .top .right .portrait {
    margin: 3rem auto 0;
    max-width: 24rem;
  }
}
#about .top .right .portrait img {
  display: block;
}
#about .top .right h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-top: 1.5em;
}
#about .top .right h3 span {
  font-size: 1.43rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
  color: #A8712C;
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #about .top .right h3 span {
    text-align: center;
  }
}
#about .top .right p {
  font-size: 0.857rem;
  line-height: 2.2em;
  text-align: justify;
  margin-top: 0.75em;
  color: #5C2E0A;
  text-align: center;
}
#about .bottom h4 {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 2em;
  position: relative;
}
#about .bottom h4::after {
  content: "";
  margin: auto;
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  left: 7.5em;
  top: 0;
  bottom: 0;
  background-color: #A8712C;
}
#about .bottom .right h4::after {
  left: 4em;
}
#about .bottom dt {
  width: 7em;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  #about .bottom .right {
    margin-top: 4rem;
  }
}
#about .bottom .right h5 {
  font-weight: 700;
  margin-top: 1.5em;
}

#doctor .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  width: 82.7%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#doctor .flex .img-container {
  overflow: hidden;
  border-radius: 50%;
}
#doctor .flex .img-container img {
  display: block;
}
#doctor .flex dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: 0.5em;
}
#doctor .flex dl > div dt {
  width: 7em;
  font-weight: 700;
}
#doctor .flex .l {
  width: 280px;
}
#doctor .flex .l h3 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  color: #A8712C;
  display: block;
  margin-top: 1em;
  margin-bottom: 0.5rem;
}
#doctor .flex .l p {
  font-size: 0.857rem;
  line-height: 2.2em;
  text-align: justify;
  color: #5C2E0A;
  text-align: center;
}
#doctor .flex .r {
  width: calc(100% - 280px - 4rem);
}
#doctor .flex .r h4 {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 2em;
  position: relative;
}
#doctor .flex .r h4::after {
  content: "";
  margin: auto;
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  left: 2.8em;
  top: 0;
  bottom: 0;
  background-color: #A8712C;
}
@media only screen and (max-width: 768px) {
  #doctor .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #doctor .flex .l, #doctor .flex .r {
    width: 100%;
  }
  #doctor .flex .img-container {
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }
}

#home_medical .top {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8rem;
}
@media only screen and (min-width: 1024px) {
  #home_medical .top {
    width: 82.7%;
  }
}
@media only screen and (min-width: 769px) {
  #home_medical .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #home_medical .top .left, #home_medical .top .right {
    width: calc(50% - 2rem);
  }
}
#home_medical .top .left h3 {
  font-size: 1.43rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
  line-height: 2em;
}
@media only screen and (max-width: 768px) {
  #home_medical .top .left h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  #home_medical .top .left p {
    margin-bottom: 3rem;
  }
}
#home_medical .merit > h3 {
  position: relative;
  margin-bottom: 5rem;
}
#home_medical .merit > h3 img {
  display: block;
  margin: auto;
}
#home_medical .merit > h3::before, #home_medical .merit > h3::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  margin: auto;
  background-color: #D94A0A;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#home_medical .merit > h3::before {
  right: calc(50% + 15rem);
}
#home_medical .merit > h3::after {
  left: calc(50% + 15rem);
}
#home_medical .merit ol {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  #home_medical .merit ol {
    width: 82.7%;
  }
}
#home_medical .merit ol li:first-of-type img {
  width: 107px;
}
#home_medical .merit ol li:nth-of-type(2) img {
  width: 111px;
}
#home_medical .merit ol li:nth-of-type(3) img {
  width: 107px;
}
#home_medical .merit ol li:nth-of-type(4) img {
  width: 100px;
}
#home_medical .merit ol li:nth-of-type(5) img {
  width: 102px;
}
#home_medical .merit ol li:nth-of-type(6) img {
  width: 108px;
}
#home_medical .merit ol li:nth-of-type(7) img {
  width: 101px;
}
#home_medical .merit ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid #E3C299;
  margin-bottom: 3rem;
}
#home_medical .merit ol li h4 {
  width: 28rem;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 769px) {
  #home_medical .merit ol li h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #home_medical .merit ol li h4 span {
    display: block;
  }
  #home_medical .merit ol li h4 span img {
    display: block;
  }
}
@media only screen and (min-width: 769px) and (min-width: 1024px) {
  #home_medical .merit ol li h4 span img {
    margin-left: -2rem;
  }
}
@media only screen and (min-width: 769px) {
  #home_medical .merit ol li h4 span:first-of-type {
    width: 120px;
  }
  #home_medical .merit ol li h4 span:last-of-type {
    width: calc(100% - 140px);
  }
}
#home_medical .merit ol li p {
  width: calc(100% - 28rem);
  line-height: 2.1em;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  #home_medical .merit ol li h4 {
    font-size: 1rem;
    letter-spacing: 0em;
    width: 8rem;
  }
  #home_medical .merit ol li h4 span {
    display: block;
  }
  #home_medical .merit ol li h4 span:last-of-type {
    margin-top: 1rem;
  }
  #home_medical .merit ol li p {
    width: calc(100% - 10rem);
  }
}
#home_medical .merit ol li:last-of-type {
  border-bottom: none;
}
#home_medical .spec {
  margin-top: 5rem;
  padding-top: 6rem;
  border-top: 2px solid #D94A0A;
}
@media only screen and (min-width: 769px) {
  #home_medical .spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #home_medical .spec .left, #home_medical .spec .right {
    width: calc(50% - 2rem);
  }
}
#home_medical .spec h3 {
  font-size: 1.285rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.4em;
}
#home_medical .spec h3 span {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  letter-spacing: 0.1em;
}
#home_medical .spec .left, #home_medical .spec .right {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#home_medical .spec .left > div, #home_medical .spec .left > ul, #home_medical .spec .right > div, #home_medical .spec .right > ul {
  background-color: white;
  border-radius: 1rem;
  padding: 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  #home_medical .spec .left > div, #home_medical .spec .left > ul, #home_medical .spec .right > div, #home_medical .spec .right > ul {
    height: calc(100% - 4rem);
  }
}
#home_medical .spec .left {
  text-align: center;
}
#home_medical .spec .left h4 {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  letter-spacing: 0.1em;
}
#home_medical .spec .left h5 {
  font-weight: 700;
  color: #D94A0A;
  letter-spacing: 0.15em;
  margin-top: 0.5em;
  margin-bottom: 2em;
}
#home_medical .spec .left p {
  border-top: 1px solid #A8712C;
  padding-top: 2rem;
}
#home_medical .spec .left p span {
  display: block;
  margin-top: 1em;
}
#home_medical .spec .right li::before {
  content: "□";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
#home_medical .spec .right li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
  font-size: 0.95rem;
}
@media only screen and (max-width: 768px) {
  #home_medical .spec .right {
    margin-top: 4rem;
  }
}

@media only screen and (min-width: 769px) {
  #outpatient > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #outpatient > div .right, #outpatient > div .left {
    width: calc(50% - 2rem);
  }
}
@media only screen and (max-width: 768px) {
  #outpatient > div .right {
    margin-bottom: 3rem;
  }
}
#outpatient > div .right ul {
  margin-bottom: 2em;
}
#outpatient > div .right li {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
  padding-left: 1.1em;
  position: relative;
}
#outpatient > div .right li::before {
  content: "□";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
#outpatient > div .right img {
  width: 100%;
}
#outpatient > div .right > div {
  background-color: white;
  border-radius: 1rem;
  margin-top: 2.5rem;
  padding: 2rem 0;
}
#outpatient > div .right > div p::before {
  content: "▲";
  position: absolute;
  top: 0;
  left: 1.5rem;
  color: #D94A0A;
}
#outpatient > div .right > div p {
  margin-top: 1rem;
  padding-left: 3rem;
  position: relative;
}

@media only screen and (min-width: 1024px) {
  #cardiology > div {
    width: 82.7%;
    margin-left: auto;
    margin-right: auto;
  }
}
#cardiology li {
  margin-bottom: 0.8em;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: relative;
  padding-left: 1.1em;
}
#cardiology li::before {
  content: "□";
  position: absolute;
  left: 0;
  top: 0;
}
#cardiology > div > p {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #A8712C;
}
#cardiology dl {
  margin-top: 4rem;
}
#cardiology dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-top: 1px solid #A8712C;
  letter-spacing: 0.15em;
}
#cardiology dl > div dt {
  width: 18rem;
  padding-left: 4rem;
  padding-right: 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#cardiology dl > div dd {
  width: calc(100% - 18rem);
  font-weight: 500;
}
#cardiology dl > div dd span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  #cardiology dl > div {
    display: block;
  }
  #cardiology dl > div dt, #cardiology dl > div dd {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #cardiology dl > div dt {
    margin-bottom: 1rem;
  }
}
#cardiology dl > div:last-of-type {
  border-bottom: 1px solid #A8712C;
}

@media only screen and (min-width: 1024px) {
  #faq dl {
    width: 82.7%;
    margin-left: auto;
    margin-right: auto;
  }
}
#faq dl div {
  padding: 2rem 0;
  border-bottom: 1px solid #A8712C;
}
#faq dl div dt::before, #faq dl div dd::before {
  font-family: museo-sans-condensed, sans-serif;
  font-weight: 700;
  color: #D94A0A;
  font-size: 1.5rem;
}
#faq dl div dt, #faq dl div dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 1.5em;
}
#faq dl div dt {
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  width: 30rem;
}
#faq dl div dd {
  width: calc(100% - 30rem);
}
#faq dl div dt::before, #faq dl div dd::before {
  content: "Q.";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
#faq dl div dd::before {
  content: "A.";
}
@media only screen and (max-width: 768px) {
  #faq dl div {
    display: block;
  }
  #faq dl div dt, #faq dl div dd {
    width: 100%;
  }
  #faq dl div dt {
    margin-bottom: 1em;
  }
}

#contact {
  position: relative;
  margin-bottom: 8rem;
}
#contact .line {
  background-color: white;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact .line h3 {
  padding-top: 4rem;
  font-size: 1.43rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #contact .line h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 1279px) {
  #contact .line .mx > div img {
    width: 22rem;
  }
}
#contact .line .bg {
  padding: 3rem 0;
}

footer {
  background-color: white;
  padding-top: 4rem;
}
@media only screen and (min-width: 1024px) {
  footer > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 1024px) {
  footer > div .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer > div .left img {
  width: 11.5rem;
  display: block;
}
footer > div .left > div {
  padding-left: 3rem;
}
footer > div .left > div p {
  margin-bottom: 1.2rem;
}
footer > div .left > div p img {
  display: block;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1023px) {
  footer > div .left {
    text-align: center;
  }
  footer > div .left img {
    margin-left: auto;
    margin-right: auto;
  }
  footer > div .left > div {
    margin-top: 3rem;
    padding-left: 0;
  }
}
footer > div .right p {
  padding-left: 2rem;
  position: relative;
}
footer > div .right p::before {
  content: "▲";
  position: absolute;
  display: block;
  left: 0.5rem;
  top: 0;
  color: #D94A0A;
}
@media only screen and (max-width: 1023px) {
  footer > div .right {
    max-width: 30rem;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
footer > p {
  text-align: center;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 0.15em;
  color: white;
  margin-top: 4rem;
  background-color: #A8712C;
}

/**
 * Swiper 6.7.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 31, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
