/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
* Variables
*/
:root {
  /* family: */
  --font-family-text: "Shippori Mincho", sans-serif;
  --font-family-title: "Shippori Mincho", sans-serif;
  --font-family-en: "Cormorant", sans-serif;
  /* Colors: */
  --text-color: #333333;
  --text-dark-color: #CECECE;
  --loud-color: #746745;
  --title-color: #333333;
  --menu-color: #6F6F6F;
  --primary-btn-color: #FFFFFF;
  /* background: */
  --background-primary-btn: #333333;
  --background-loud: #f3ede3;
  --background-footer: #333333;
  /* size */
  --base-font-size: 1.8rem;
  --h1-font-size: 6rem;
  --h2-font-size: 6rem;
  --h3-font-size: 2.4rem;
  --h4-font-size: 2.4rem; }

/*
 * Function
 */
/*
* mixins
*/
@media (min-width: 768px) and (max-width: 991px) {
  .class {
    width: 60%; } }

/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
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%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
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; }

/*
 * reset
 */
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%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
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; }

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-size: var(--base-font-size);
  font-family: var(--font-family-text); }

input {
  padding: 0;
  font-family: var(--font-family-text);
  font-size: var(--base-font-size); }

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  font-weight: 600;
  color: var(--title-color);
  line-height: 1.4; }

h1 {
  font-size: var(--h1-font-size); }

h2 {
  font-size: var(--h2-font-size); }

h3 {
  font-size: var(--h3-font-size); }

h4 {
  font-size: var(--h4-font-size); }

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: var(--text-color);
  text-decoration: none; }
  a:visited {
    color: var(--text-color);
    text-decoration: none; }
  a:hover, a:visited:hover {
    color: var(--loud-color);
    text-decoration: none; }
  a:focus {
    outline: none;
    text-decoration: none; }

.more {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out; }

.btn-primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  max-width: 40rem;
  height: 7.4rem;
  background: var(--background-primary-btn);
  color: var(--primary-btn-color) !important;
  font-size: 2rem;
  -webkit-box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  position: relative; }
  .btn-primary::after {
    content: '';
    width: 2rem;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    right: 0; }
  .btn-primary:hover {
    background: var(--loud-color); }

@media (max-width: 768px) {
  .btn-primary {
    max-width: 63rem;
    height: 11.1rem;
    font-size: 3rem; }
    .btn-primary::after {
      width: 3rem; } }

.nav-bar-menu {
  padding: 10rem 3rem 12rem;
  height: 100vh;
  width: 100vw;
  max-width: 75rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  overflow-x: hidden;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  background: #ffffff; }
  .nav-bar-menu.is_active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  .nav-bar-menu .navbar-brand {
    width: 10rem;
    position: absolute;
    top: 0;
    right: 0; }
  .nav-bar-menu h3 {
    padding: 0 2rem;
    margin-bottom: 3rem;
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--loud-color); }
  .nav-bar-menu ul {
    margin-bottom: 8rem; }
    .nav-bar-menu ul li {
      border-top: 2px solid #dacfc0; }
      .nav-bar-menu ul li:last-child {
        border-bottom: 2px solid #dacfc0; }
      .nav-bar-menu ul li a {
        padding: 0 3.5rem;
        display: grid;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: start;
            -ms-flex-pack: start;
                justify-content: start;
        gap: 2rem;
        grid-template-columns: auto 1fr;
        font-size: 3rem;
        font-weight: 600;
        line-height: 10rem;
        font-weight: 500;
        color: var(--text-color);
        transition: all 300ms ease-in-out;
        -webkit-transition: all 300ms ease-in-out;
        -moz-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out; }
        .nav-bar-menu ul li a::before {
          content: '';
          width: .8rem;
          height: 1.6rem;
          background-image: url("../images/icon-arows-right.webp");
          background-position: 0 0;
          background-repeat: no-repeat;
          background-size: contain; }
        .nav-bar-menu ul li a:hover {
          opacity: 0.7; }
  .nav-bar-menu__btn {
    padding: 0 3rem; }

.menu-implant {
  background: #345943;
  color: #ffffff !important; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ""; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir="rtl"] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0; }
  10% {
    opacity: 1; }
  50%,
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0; } }

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0; }
  10% {
    opacity: 1; }
  50%,
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0; } }

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px; }

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none; }

.scroll-hint-text {
  font-size: 10px;
  color: #fff;
  margin-top: 5px; }

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8; }

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=); }

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
       -o-transition-delay: 2.4s;
          transition-delay: 2.4s; }

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1; }

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2; }

.scroll-hint-icon-white {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4); }

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=); }

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==); }

.scroll-hint-icon-white .scroll-hint-text {
  color: #000; }

.scroll-hint-shadow-wrap {
  position: relative; }

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: -o-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden; }

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden; }

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible; }

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible; }

.scroll-hint-icon-wrap.is-active {
  background: rgba(138, 128, 102, 0.5); }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable="true"] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -ms-transform-origin: 0;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left)); } }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

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

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

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right)); } } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px; }

body {
  background: #fff;
  font-family: var(--font-family-text);
  color: var(--text-color);
  font-size: var(--base-font-size);
  line-height: 2;
  overflow-x: hidden;
  font-weight: 500;
  letter-spacing: 0;
  width: 100%; }
  body.is_active {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1; }
    body.is_active::after {
      content: '';
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.33);
      position: fixed;
      overflow: hidden;
      top: 0;
      left: 0;
      z-index: 99; }

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  -o-border-image: none;
     border-image: none;
  border-style: solid none none;
  border-width: 0.2em 0 0 0;
  margin: 0; }

.container {
  width: 100%;
  max-width: 131rem;
  padding: 0 1.5rem;
  margin: 0 auto; }

p {
  margin-bottom: 1.5rem; }

input:focus {
  outline: none; }

a img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out; }
  a img:hover {
    opacity: 0.7; }

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

iframe {
  width: 100%;
  vertical-align: middle; }

.header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999; }
  .header__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start; }
    .header__main .logo {
      width: 22rem; }
    .header__main--right {
      display: grid;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      grid-template-columns: 29.1rem 30rem 10rem; }
      .header__main--right .tel {
        margin-right: 3rem; }
      .header__main--right .navbar-brand {
        cursor: pointer; }

@media (max-width: 768px) {
  .header__main--right {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 10rem; }
    .header__main--right .tel {
      display: none; }
    .header__main--right .contact {
      display: none; } }

.banner__main {
  position: relative; }
  .banner__main h1 {
    line-height: 0; }
  .banner__main--icon {
    width: 18.5vw;
    position: absolute;
    right: 3rem;
    bottom: -3rem; }

.case-box {
  padding: 15rem 0 0; }
  .case-box .head-box {
    text-align: center;
    margin-bottom: 6rem;
    position: relative; }
    .case-box .head-box::after {
      content: '';
      width: 100vw;
      height: 1rem;
      background-image: url("../images/line.webp");
      background-position: 0 0;
      background-repeat: no-repeat;
      background-size: 100% auto;
      position: absolute;
      top: 3rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: -1; }
    .case-box .head-box h2 {
      display: inline-block;
      line-height: 1;
      color: var(--loud-color);
      margin-bottom: 2rem;
      background: #FFFFFF;
      padding: 0 12rem; }
    .case-box .head-box p {
      margin-bottom: 0;
      font-size: 3.6rem;
      color: #d5cec4;
      line-height: 1;
      font-family: var(--font-family-en); }
  .case-box__main {
    padding-bottom: 8rem; }
    .case-box__main .slick-list {
      margin: 0 -5rem; }
    .case-box__main--items {
      padding: 0 5rem; }
      .case-box__main--items figure {
        margin-bottom: 2rem; }
        .case-box__main--items figure img {
          width: 100%;
          height: auto; }
      .case-box__main--items .labels {
        margin-bottom: 3rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        .case-box__main--items .labels span {
          display: -webkit-inline-box;
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex;
          padding: 0 2.5rem;
          line-height: 3.2rem;
          background: #8a8066;
          font-size: 1.6rem;
          color: #FFFFFF; }
        .case-box__main--items .labels time {
          font-size: 1.6rem; }
      .case-box__main--items h3 {
        line-height: 1;
        display: -webkit-box;
        max-width: 100%;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 3rem; }
      .case-box__main--items p {
        margin-bottom: 3rem;
        font-size: 1.6rem;
        display: -webkit-box;
        max-width: 100%;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .case-box__main--items .btn {
        text-align: right; }
        .case-box__main--items .btn a {
          display: -webkit-inline-box;
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex;
          width: 9.8rem; }
  .case-box__btn {
    position: relative;
    padding: 4rem 0;
    text-align: center; }
    .case-box__btn::after {
      content: '';
      width: 100vw;
      height: 100%;
      background: #f0f0f0;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: -1; }

.reduce-box {
  padding-top: 60rem;
  position: relative; }
  .reduce-box::before {
    content: '';
    width: 100vw;
    height: 60rem;
    background-image: url("../images/reduce-img.webp");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; }
  .reduce-box__main {
    display: grid;
    gap: 14rem;
    grid-template-columns: 28.8rem 1fr;
    padding: 10rem 0 2rem; }
    .reduce-box__main figure {
      margin-top: -26rem; }
    .reduce-box__main--txt {
      line-height: 4.8rem; }
      .reduce-box__main--txt span {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--loud-color); }

.disadvantages-box {
  background: #e3ded8;
  padding: 10rem 0 12rem; }
  .disadvantages-box .container {
    max-width: 151rem; }
  .disadvantages-box .head-box {
    margin-bottom: 12rem;
    text-align: center; }
    .disadvantages-box .head-box h2 {
      font-size: 3.6rem;
      line-height: 7.8rem;
      font-weight: 500; }
      .disadvantages-box .head-box h2 span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-size: 8rem;
        line-height: 9rem;
        color: #FFFFFF;
        background: #9e8a60;
        padding: 0 .5rem; }
  .disadvantages-box__main {
    padding: 0 10rem;
    margin-bottom: 12rem;
    display: grid;
    gap: 12rem;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 9; }
    .disadvantages-box__main::after {
      content: '';
      width: 17.1rem;
      height: 15.8rem;
      background-image: url("../images/icon-disadvantages.webp");
      background-position: 0 0;
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      top: 1rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: -1; }
    .disadvantages-box__main--items .head {
      margin-bottom: 4rem;
      text-align: center;
      position: relative;
      font-size: 20rem;
      line-height: .6;
      color: #FFFFFF;
      font-weight: 400;
      padding-bottom: 3rem; }
      .disadvantages-box__main--items .head span {
        font-size: 8rem;
        font-weight: 500;
        color: var(--loud-color);
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        white-space: nowrap; }
    .disadvantages-box__main--items h3 {
      margin-bottom: 5rem;
      font-size: 3.4rem;
      line-height: 5.8rem;
      text-align: center; }
    .disadvantages-box__main--items p {
      margin-bottom: 0; }
      .disadvantages-box__main--items p span {
        font-size: 2.4rem;
        font-weight: 700;
        color: #544b32; }
  .disadvantages-box__products {
    border: .6rem solid #746745;
    padding: 12rem 10rem;
    position: relative;
    z-index: 9; }
    .disadvantages-box__products::after {
      content: '';
      width: 10.9rem;
      height: 9.6rem;
      background-image: url("../images/icon-aleft.webp");
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: #e3ded8;
      padding: 0 1.5rem; }
    .disadvantages-box__products h2 {
      text-align: center;
      font-size: 4.8rem;
      font-weight: 500;
      margin-bottom: 8rem; }
    .disadvantages-box__products--txt {
      margin-bottom: 8rem;
      padding-right: 48rem; }
      .disadvantages-box__products--txt span {
        font-size: 2.4rem;
        color: var(--loud-color); }
    .disadvantages-box__products--list {
      margin-bottom: 8rem;
      background: #d8d1c9;
      border: 2px solid #FFFFFF;
      padding: 6rem;
      position: relative; }
      .disadvantages-box__products--list::before {
        content: '';
        width: 28.2rem;
        height: 49.9rem;
        background-image: url("../images/disadvantages.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        right: 4rem;
        top: -45rem;
        z-index: -1; }
      .disadvantages-box__products--list ul li {
        font-size: 2.4rem;
        line-height: 6.2rem;
        padding-left: 7rem;
        position: relative; }
        .disadvantages-box__products--list ul li::before {
          content: '';
          width: 4.8rem;
          height: 4.8rem;
          background-image: url("../images/icon-check.webp");
          background-position: 0 0;
          background-repeat: no-repeat;
          background-size: contain;
          position: absolute;
          top: 1rem;
          left: 0; }
        .disadvantages-box__products--list ul li small {
          font-size: 1.8rem; }
        .disadvantages-box__products--list ul li span {
          font-weight: 700;
          color: var(--loud-color); }
    .disadvantages-box__products--des span {
      font-size: 2.4rem;
      color: var(--loud-color);
      font-weight: 700; }

.worry-box {
  padding: 14rem 0 9.5rem;
  background-image: url("../images/worry-bg.webp");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover; }
  .worry-box .head-box {
    margin-bottom: 7rem; }
    .worry-box .head-box h2 {
      margin-bottom: 4rem;
      font-size: 6rem;
      line-height: 1;
      color: #FFFFFF;
      font-weight: 300;
      font-family: var(--font-family-en);
      position: relative;
      padding-bottom: 1rem; }
      .worry-box .head-box h2::after {
        content: '';
        width: 6.6rem;
        height: 2px;
        background: #FFFFFF;
        position: absolute;
        bottom: 0;
        left: 0; }
    .worry-box .head-box p {
      margin-bottom: 0;
      font-size: 3.6rem;
      line-height: 7.6rem; }
      .worry-box .head-box p span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-size: 8rem;
        color: #FFFFFF;
        line-height: 9.1rem;
        background: #9e8a60;
        padding: 0 .5rem; }
  .worry-box__main ul {
    margin-bottom: 7rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; }
    .worry-box__main ul li {
      padding: 3rem 3rem 3rem 8.5rem;
      position: relative;
      font-size: 2.4rem;
      line-height: 4.4rem;
      background: rgba(229, 228, 227, 0.9); }
      .worry-box__main ul li::before {
        content: '';
        width: 4rem;
        height: 4rem;
        background-image: url("../images/icon-check.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 3rem;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); }
  .worry-box__main--des {
    text-align: center;
    font-size: 4rem;
    line-height: 7rem; }
    .worry-box__main--des span {
      border-bottom: .6rem solid #FFFFFF; }

.involves-box {
  position: relative;
  padding: 14rem 0 12rem; }
  .involves-box .container {
    max-width: 175.5rem; }
  .involves-box::before {
    content: '';
    width: 36rem;
    height: 8rem;
    background-image: url("../images/icon-involves.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
  .involves-box .head-box {
    text-align: center;
    margin-bottom: 12rem; }
    .involves-box .head-box h2 {
      font-size: 3.6rem;
      line-height: 7.6rem;
      font-weight: 500;
      margin-bottom: 8rem; }
      .involves-box .head-box h2 span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 0 .5rem;
        background: #9e8a60;
        line-height: 9.1rem;
        font-size: 8rem;
        color: #FFFFFF; }
    .involves-box .head-box p {
      margin-bottom: 0; }
      .involves-box .head-box p span {
        font-size: 2.4rem;
        color: #544b32;
        font-weight: 700; }
  .involves-box__main {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 86.4rem 1fr; }
    .involves-box__main--txt {
      margin-left: -18.5rem;
      font-size: 3.6rem;
      line-height: 7.6rem; }
      .involves-box__main--txt span {
        font-size: 4.8rem;
        color: #544b32; }
      .involves-box__main--txt .labels {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 0 .5rem;
        background: #9e8a60;
        line-height: 9.1rem;
        font-size: 8rem;
        color: #FFFFFF;
        padding-bottom: 1rem; }

.implant-box {
  padding: 12rem 0;
  background: #5a6f6a; }
  .implant-box .head-box {
    text-align: center;
    margin-bottom: 1rem; }
    .implant-box .head-box p {
      font-size: 3.6rem;
      line-height: 1;
      color: #FFFFFF;
      margin-bottom: 6rem; }
    .implant-box .head-box h2 {
      line-height: 0; }
      .implant-box .head-box h2 span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 0 1.5rem 0 0;
        line-height: 9.1rem;
        background: #FFFFFF;
        font-size: 8rem;
        font-weight: 500;
        color: #345943;
        position: relative; }
        .implant-box .head-box h2 span::after {
          content: '';
          width: 33.7rem;
          height: 1.7rem;
          background-image: url("../images/dote.webp");
          background-position: 0 0;
          background-repeat: no-repeat;
          background-size: contain;
          position: absolute;
          top: -3rem;
          left: 10rem; }
  .implant-box__main figure {
    text-align: center; }
    .implant-box__main figure img {
      width: 100%;
      max-width: 111rem; }
  .implant-box__main--txt {
    text-align: center;
    margin-bottom: 12rem; }
    .implant-box__main--txt p {
      margin-bottom: 3rem;
      color: #FFFFFF; }
      .implant-box__main--txt p span {
        font-weight: 700;
        font-size: 2.4rem;
        color: #a7e7d8; }
      .implant-box__main--txt p:last-child {
        margin-bottom: 0; }
  .implant-box__main--des {
    text-align: center; }
    .implant-box__main--des h3 {
      margin-bottom: 8rem;
      font-size: 4rem;
      color: #FFFFFF; }
      .implant-box__main--des h3 span {
        position: relative; }
        .implant-box__main--des h3 span::after {
          content: '';
          width: 4.7rem;
          height: .8rem;
          background-image: url("../images/icon-dote.webp");
          background-position: 0 0;
          background-repeat: no-repeat;
          background-size: contain;
          position: absolute;
          top: -1rem;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); }
    .implant-box__main--des p {
      margin-bottom: 0;
      color: #FFFFFF; }
      .implant-box__main--des p span {
        font-weight: 700;
        font-size: 2.4rem;
        color: #a7e7d8; }

.cost-box {
  padding: 12rem 0;
  background: #e3ded8; }
  .cost-box .head-box {
    margin-bottom: 4rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    grid-template-columns: 15rem 1fr; }
    .cost-box .head-box p {
      margin-bottom: 2rem;
      font-size: 3.6rem;
      color: #544b32;
      font-family: var(--font-family-en);
      line-height: 1; }
    .cost-box .head-box h2 {
      line-height: 1;
      font-size: 4.8rem;
      color: var(--loud-color); }
  .cost-box__main h3 {
    background: #9e8a60;
    text-align: center;
    padding: 1rem;
    font-size: 5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8rem; }
  .cost-box__main--txt {
    margin-bottom: 8rem; }
    .cost-box__main--txt p {
      margin-bottom: 4rem; }
      .cost-box__main--txt p:last-child {
        margin-bottom: 0; }
      .cost-box__main--txt p span {
        font-size: 2.4rem;
        color: #694a44;
        font-weight: 700; }

.aesthetic-box {
  padding: 12rem 0;
  background: #f5f2eb; }
  .aesthetic-box .head-box {
    margin-bottom: 4rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    grid-template-columns: 15rem 1fr; }
    .aesthetic-box .head-box p {
      margin-bottom: 2rem;
      font-size: 3.6rem;
      color: #544b32;
      font-family: var(--font-family-en);
      line-height: 1; }
    .aesthetic-box .head-box h2 {
      line-height: 1;
      font-size: 4.8rem;
      color: var(--loud-color); }
  .aesthetic-box__main h3 {
    background: #9e8a60;
    text-align: center;
    padding: 1rem;
    font-size: 5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8rem; }
  .aesthetic-box__main--txt {
    margin-bottom: 8rem; }
    .aesthetic-box__main--txt p {
      margin-bottom: 4rem; }
      .aesthetic-box__main--txt p:last-child {
        margin-bottom: 0; }
      .aesthetic-box__main--txt p span {
        font-size: 2.4rem;
        color: #694a44;
        font-weight: 700; }

.reliability-box {
  padding: 12rem 0;
  background: #e3ded8; }
  .reliability-box .head-box {
    margin-bottom: 4rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    grid-template-columns: 15rem 1fr; }
    .reliability-box .head-box p {
      margin-bottom: 2rem;
      font-size: 3.6rem;
      color: #544b32;
      font-family: var(--font-family-en);
      line-height: 1; }
    .reliability-box .head-box h2 {
      line-height: 1;
      font-size: 4.8rem;
      color: var(--loud-color); }
  .reliability-box__main h3 {
    background: #9e8a60;
    text-align: center;
    padding: 1rem;
    font-size: 5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8rem; }
  .reliability-box__main--post {
    display: grid;
    gap: 8rem;
    grid-template-columns: 60rem 1fr;
    margin-bottom: 6rem; }
    .reliability-box__main--post .txt span {
      font-size: 2.4rem;
      color: #544b32;
      font-weight: 700; }
  .reliability-box__main--txt {
    margin-bottom: 8rem; }
    .reliability-box__main--txt p {
      margin-bottom: 4rem; }
      .reliability-box__main--txt p:last-child {
        margin-bottom: 0; }
      .reliability-box__main--txt p span {
        font-size: 2.4rem;
        color: #544b32;
        font-weight: 700; }
  .reliability-box__main--thumb {
    margin-bottom: 12rem; }
  .reliability-box__main--video h2 {
    text-align: center;
    margin-bottom: 6rem;
    padding-bottom: 2rem;
    font-size: 5.4rem;
    font-weight: 500;
    position: relative; }
    .reliability-box__main--video h2::after {
      content: '';
      width: 10rem;
      height: 4px;
      background: #8a8066;
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }

.overlooked-box {
  padding-bottom: 12rem;
  background: #e3ded8; }
  .overlooked-box .container {
    max-width: 151rem; }
  .overlooked-box__main {
    border: .6rem solid #746745;
    padding: 12rem 10rem;
    position: relative;
    z-index: 9; }
    .overlooked-box__main::after {
      content: '';
      width: 10.9rem;
      height: 9.6rem;
      background-image: url("../images/icon-aleft.webp");
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: #e3ded8;
      padding: 0 1.5rem; }
    .overlooked-box__main h2 {
      text-align: center;
      margin-bottom: 8rem;
      font-size: 4.8rem;
      font-weight: 500; }
    .overlooked-box__main--post {
      display: grid;
      -webkit-box-align: end;
      -webkit-align-items: end;
          -ms-flex-align: end;
              align-items: end;
      grid-template-columns: 44.1rem 1fr;
      margin-bottom: 6rem; }
      .overlooked-box__main--post p {
        margin-bottom: 6rem; }
        .overlooked-box__main--post p:last-child {
          margin-bottom: 0; }
        .overlooked-box__main--post p span {
          font-size: 2.4rem;
          color: var(--loud-color); }
    .overlooked-box__main--txt span {
      font-size: 2.4rem;
      color: var(--loud-color); }

.for-box {
  padding: 12rem 0;
  background: #5a6f6a;
  position: relative; }
  .for-box::before {
    content: '';
    width: 36rem;
    height: 8rem;
    background-image: url("../images/icon-for.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
  .for-box .container {
    max-width: 139.5rem; }
  .for-box .head-box {
    text-align: center;
    margin-bottom: 1rem; }
    .for-box .head-box p {
      font-size: 3.6rem;
      line-height: 1;
      color: #FFFFFF;
      margin-bottom: 6rem; }
    .for-box .head-box h2 {
      line-height: 0; }
      .for-box .head-box h2 span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 0 2rem;
        line-height: 9.1rem;
        background: #FFFFFF;
        font-size: 8rem;
        font-weight: 500;
        color: #345943; }
  .for-box__main {
    text-align: center; }
    .for-box__main p {
      margin-bottom: 8rem;
      color: #FFFFFF; }
    .for-box__main h2 {
      font-size: 4rem;
      line-height: 8rem;
      color: #FFFFFF;
      font-weight: 500; }
      .for-box__main h2 span {
        color: #a7e7d8; }

.reason-box {
  padding: 12rem 0;
  background: #f5f2eb; }
  .reason-box .head-box {
    margin-bottom: 4rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    grid-template-columns: 15rem 1fr; }
    .reason-box .head-box p {
      margin-bottom: 2rem;
      font-size: 3.6rem;
      color: #544b32;
      font-family: var(--font-family-en);
      line-height: 1; }
    .reason-box .head-box h2 {
      line-height: 1;
      font-size: 4.8rem;
      color: var(--loud-color); }
  .reason-box__main h3 {
    background: #9e8a60;
    text-align: center;
    padding: 1rem;
    font-size: 5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8rem; }
  .reason-box__main--txt {
    margin-bottom: 8rem; }
    .reason-box__main--txt p {
      margin-bottom: 4rem; }
      .reason-box__main--txt p:last-child {
        margin-bottom: 0; }
      .reason-box__main--txt p span {
        font-size: 2.4rem;
        color: #746745; }
  .reason-box__main--des {
    font-size: 4rem;
    text-align: center; }
    .reason-box__main--des span {
      font-size: 6rem;
      color: var(--loud-color); }

.plan-box {
  padding: 12rem 0; }
  .plan-box .head-box {
    margin-bottom: 8rem; }
    .plan-box .head-box p {
      text-align: center;
      margin-bottom: 5rem;
      padding-bottom: 1rem;
      position: relative;
      font-size: 6rem;
      line-height: 1;
      font-weight: 300;
      color: var(--loud-color);
      font-family: var(--font-family-en); }
      .plan-box .head-box p::after {
        content: '';
        width: 6.6rem;
        height: 2px;
        background: var(--loud-color);
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); }
    .plan-box .head-box h2 {
      text-align: center;
      font-size: 4.8rem;
      font-weight: 500; }
  .plan-box__main {
    margin-bottom: 12rem; }
    .plan-box__main p {
      margin-bottom: 8rem; }
    .plan-box__main--list {
      display: grid;
      -webkit-box-align: start;
      -webkit-align-items: start;
          -ms-flex-align: start;
              align-items: start;
      gap: 8rem;
      grid-template-columns: repeat(2, 1fr); }
      .plan-box__main--list .items {
        background: #dfeaf0; }
        .plan-box__main--list .items__title {
          background: #9e8a60;
          text-align: center;
          line-height: 8rem;
          font-size: 3.6rem;
          color: #FFFFFF;
          font-weight: 500; }
        .plan-box__main--list .items__main {
          padding: 4rem 5.5rem; }
          .plan-box__main--list .items__main h3 {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.4rem;
            line-height: 3.2rem;
            min-height: 9.6rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center; }
            .plan-box__main--list .items__main h3 small {
              font-size: 1.8rem; }
          .plan-box__main--list .items__main .thumb {
            width: 20.9rem;
            min-height: 17.9rem;
            margin: 0 auto 1rem; }
          .plan-box__main--list .items__main p {
            margin-bottom: 0;
            font-size: 1.3rem;
            line-height: 2.6rem; }
        .plan-box__main--list .items__price {
          text-align: center;
          line-height: 8rem;
          background: #9e8a60;
          font-size: 4.8rem;
          color: #FFFFFF; }
          .plan-box__main--list .items__price small {
            font-size: 3rem; }
        .plan-box__main--list .items:last-child .items__title,
        .plan-box__main--list .items:last-child .items__price {
          background: #949494; }
  .plan-box__other {
    margin-bottom: 12rem; }
    .plan-box__other--head {
      text-align: center;
      margin-bottom: 8rem;
      background: #8a8066;
      padding: 2rem 1rem 2.5rem;
      position: relative; }
      .plan-box__other--head::after {
        content: '';
        width: 100%;
        height: 1px;
        background: #FFFFFF;
        position: absolute;
        left: 0;
        bottom: 3px; }
      .plan-box__other--head h3 {
        font-size: 3.6rem;
        color: #FFFFFF;
        font-weight: 500; }
      .plan-box__other--head p {
        margin-bottom: 0;
        font-size: 1.6rem;
        font-weight: 600;
        color: #FFFFFF; }
    .plan-box__other--list .items {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr 48rem; }
      .plan-box__other--list .items__labels {
        padding: 3rem 5rem;
        font-size: 3rem;
        line-height: 4rem;
        border-top: 2px solid #e5e5e5; }
      .plan-box__other--list .items__info {
        padding: 3rem 5rem;
        font-size: 2.4rem;
        line-height: 4rem;
        border-top: 2px solid #8a8066; }
        .plan-box__other--list .items__info span {
          font-size: 3rem; }
      .plan-box__other--list .items:last-child .items__labels {
        border-bottom: 2px solid #e5e5e5; }
      .plan-box__other--list .items:last-child .items__info {
        border-bottom: 2px solid #8a8066; }
  .plan-box__price--head {
    text-align: center;
    background: #8a8066;
    padding: 2rem 1rem 2.5rem;
    position: relative; }
    .plan-box__price--head::after {
      content: '';
      width: 100%;
      height: 1px;
      background: #FFFFFF;
      position: absolute;
      left: 0;
      bottom: 3px; }
    .plan-box__price--head h3 {
      font-size: 3.6rem;
      color: #FFFFFF;
      font-weight: 500; }
    .plan-box__price--head p {
      margin-bottom: 0;
      font-size: 1.6rem;
      font-weight: 600;
      color: #FFFFFF; }
  .plan-box__price figure {
    margin-bottom: 6rem; }
  .plan-box__price h3 {
    text-align: center;
    font-size: 3.6rem;
    line-height: 5.6rem;
    font-weight: 600; }
  .plan-box__price .dental-loan {
    padding: 6rem;
    background: #f5f2eb;
    margin-bottom: 5rem; }
    .plan-box__price .dental-loan__content {
      display: grid;
      grid-template-columns: 1fr 58rem;
      gap: 10rem;
      -webkit-box-align: start;
      -webkit-align-items: start;
          -ms-flex-align: start;
              align-items: start; }
    .plan-box__price .dental-loan__left h2 {
      margin-bottom: 4rem;
      color: #2d2d2d;
      font-size: 3.6rem;
      font-weight: 500;
      line-height: 1;
      text-align: center; }
    .plan-box__price .dental-loan__left h3 {
      margin: 3rem 0;
      color: #746745;
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.2; }
    .plan-box__price .dental-loan__divider {
      width: 100%;
      height: 1px;
      background: #d0c5b2; }
  .plan-box__price .plan-name {
    margin: 5rem 0 2rem;
    font-size: 3rem;
    line-height: 1.2; }
  .plan-box__price .plan-price {
    font-size: 3rem;
    line-height: 1.2; }
    .plan-box__price .plan-price strong {
      font-size: 4.8rem;
      line-height: 1; }
    .plan-box__price .plan-price small {
      font-size: 2.4rem; }
  .plan-box__price .plan-note {
    text-align: right;
    margin-top: 3rem; }
    .plan-box__price .plan-note span {
      display: inline-block;
      padding: 1.2rem 3rem;
      background: #8a8066;
      color: #fff;
      font-size: 2.2rem;
      line-height: 1; }
  .plan-box__price .loan-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2rem; }
    .plan-box__price .loan-card:last-child {
      margin-bottom: 0; }
    .plan-box__price .loan-card__count {
      width: 9rem;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0;
      padding: 1.2rem 0;
      background: #404040;
      color: #fff;
      text-align: center; }
      .plan-box__price .loan-card__count span {
        display: block;
        font-size: 2rem;
        line-height: 1.5;
        -webkit-writing-mode: vertical-rl;
            -ms-writing-mode: tb-rl;
                writing-mode: vertical-rl;
        margin: 0 auto; }
      .plan-box__price .loan-card__count strong {
        display: block;
        color: #ceaa7e;
        font-size: 3.8rem;
        font-weight: 300;
        line-height: 1.2; }
      .plan-box__price .loan-card__count small {
        display: block;
        font-size: 2rem;
        line-height: 1; }
    .plan-box__price .loan-card__body {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: start;
          -ms-flex-align: start;
              align-items: start;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 0%;
          -ms-flex: 1 1 0%;
              flex: 1 1 0%;
      gap: 3.4rem;
      padding: 3rem 3.5rem 3rem 2.5rem;
      background: #fff; }
    .plan-box__price .loan-card__year {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 7rem;
      height: 7rem;
      border-radius: 50%;
      background: #8a8066;
      color: #fff;
      font-size: 3.8rem;
      line-height: 1;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
      .plan-box__price .loan-card__year small {
        font-size: 2.2rem; }
    .plan-box__price .loan-card__price .main {
      font-size: 5.5rem;
      font-weight: 400;
      line-height: 1.1; }
      .plan-box__price .loan-card__price .main span {
        font-size: 3.6rem;
        font-weight: 600; }
      .plan-box__price .loan-card__price .main b {
        font-size: 4.8rem;
        font-weight: 600; }
    .plan-box__price .loan-card__price .sub {
      margin-top: 1.2rem;
      font-size: 2.4rem;
      line-height: 1.4;
      text-align: right; }

.flow-box {
  padding: 12rem 0;
  background-image: url("../images/flow-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover; }
  .flow-box .head-box {
    margin-bottom: 8rem; }
    .flow-box .head-box p {
      text-align: center;
      margin-bottom: 5rem;
      padding-bottom: 1rem;
      position: relative;
      font-size: 6rem;
      line-height: 1;
      font-weight: 300;
      color: var(--loud-color);
      font-family: var(--font-family-en); }
      .flow-box .head-box p::after {
        content: '';
        width: 6.6rem;
        height: 2px;
        background: var(--loud-color);
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); }
    .flow-box .head-box h2 {
      text-align: center;
      font-size: 4.8rem;
      font-weight: 500; }
  .flow-box__main--txt {
    margin-bottom: 8rem; }
  .flow-box__main--list {
    background: #FFFFFF;
    padding: 2rem 10rem 2rem 24rem; }
    .flow-box__main--list .items {
      padding: 8rem 0;
      display: grid;
      gap: 6rem;
      grid-template-columns: 1fr 34rem;
      border-bottom: 2px solid #e5e5e5;
      position: relative; }
      .flow-box__main--list .items::before {
        content: '';
        width: 1px;
        height: 100%;
        border-left: 2px dashed #c3b8ab;
        position: absolute;
        top: 10rem;
        left: -8rem; }
      .flow-box__main--list .items::after {
        content: '';
        width: 12.1rem;
        height: 8rem;
        background-image: url("../images/flow-num-1.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 6rem;
        left: -16rem;
        background-color: #fff; }
      .flow-box__main--list .items h3 {
        margin-bottom: 7rem;
        font-size: 3.2rem;
        font-weight: 600; }
      .flow-box__main--list .items p {
        margin-bottom: 0; }
      .flow-box__main--list .items:last-child {
        border: none; }
        .flow-box__main--list .items:last-child::before {
          display: none; }
      .flow-box__main--list .items:nth-child(2)::after {
        background-image: url("../images/flow-num-2.webp"); }
      .flow-box__main--list .items:nth-child(3)::after {
        background-image: url("../images/flow-num-3.webp"); }
      .flow-box__main--list .items:nth-child(4)::after {
        background-image: url("../images/flow-num-4.webp"); }
      .flow-box__main--list .items:nth-child(5)::after {
        background-image: url("../images/flow-num-5.webp"); }

.doctor-box {
  padding: 12rem 0;
  background: #f5f2eb;
  overflow: hidden; }
  .doctor-box .head-box p {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 1rem;
    position: relative;
    font-size: 6rem;
    line-height: 1;
    font-weight: 300;
    color: var(--loud-color);
    font-family: var(--font-family-en); }
    .doctor-box .head-box p::after {
      content: '';
      width: 6.6rem;
      height: 2px;
      background: var(--loud-color);
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
  .doctor-box .head-box h2 {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 500; }
  .doctor-box__main--group {
    display: grid;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 12rem;
    grid-template-columns: 1fr 52rem;
    margin-bottom: 6rem; }
    .doctor-box__main--group figure {
      margin-right: -32rem; }
  .doctor-box__main p {
    margin-bottom: 4rem; }
    .doctor-box__main p:last-child {
      margin-bottom: 0; }

.clinic-box {
  padding: 12rem 0; }
  .clinic-box__main--logo {
    width: 100%;
    max-width: 70rem;
    margin: 0 auto 6rem; }
  .clinic-box__main--calenda {
    display: grid;
    gap: 13.8rem;
    grid-template-columns: 34rem 1fr; }
    .clinic-box__main--calenda .info .tel {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      max-width: 29.2rem;
      margin-bottom: 6rem; }

.compare-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.8rem; }
  .compare-table th,
  .compare-table td {
    padding: 1rem;
    background: #f8f6f4;
    text-align: center; }
  .compare-table thead th {
    background: #ab9767;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    vertical-align: middle; }
    .compare-table thead th:first-child {
      width: 35%;
      background: transparent; }
  .compare-table tbody th {
    background: #a4a4a4;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    vertical-align: middle; }
  .compare-table tbody td {
    color: #847241;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1; }
    .compare-table tbody td small {
      display: block;
      margin-top: 1.2rem;
      color: #4d4d4d;
      font-size: 1.6rem;
      line-height: 1.6; }

.footer {
  background: var(--background-footer); }
  .footer__main {
    text-align: center;
    padding: 5rem 0;
    font-size: 1.8rem;
    line-height: 1;
    color: #9e8a60;
    font-family: var(--font-family-en); }

@media (max-width: 768px) {
  .footer {
    margin-bottom: 10rem; }
    .footer__main {
      text-align: center;
      font-size: 2.4rem; } }

/* layout - Responsive .
========================================================================== */
.sp {
  display: none; }

@media screen and (max-width: 1520px) and (min-width: 769px) {
  .doctor-box__main--group figure {
    margin-right: -15rem; } }

@media screen and (max-width: 1200px) and (min-width: 769px) {
  html {
    font-size: 9px; } }

@media screen and (max-width: 1050px) and (min-width: 769px) {
  html {
    font-size: 8px; } }

@media screen and (max-width: 991px) and (min-width: 769px) {
  html {
    font-size: 7px; }
  :root {
    --base-font-size: 14px; }
  .involves-box__main {
    grid-template-columns: 1fr;
    gap: 2rem; }
    .involves-box__main--txt {
      margin-left: 0; } }

@media (max-width: 768px) {
  :root {
    --base-font-size: 3rem; }
  html {
    font-size: 1.3333333vw; }
  .pc {
    display: none; }
  .sp {
    display: block; }
  .container {
    padding: 0 3rem; }
  .banner__main--icon {
    width: 28.8rem;
    right: 3rem;
    bottom: -8rem; }
  .case-box {
    padding: 12rem 0 0;
    overflow: hidden; }
    .case-box__main {
      padding: 0 9rem 8rem; }
      .case-box__main--items figure {
        margin-bottom: 3rem; }
      .case-box__main--items .labels {
        margin-bottom: 4rem; }
        .case-box__main--items .labels span {
          padding: 0 3.5rem;
          line-height: 4.8rem;
          font-size: 2.4rem; }
        .case-box__main--items .labels time {
          font-size: 2.4rem; }
      .case-box__main--items h3 {
        font-size: 3.6rem; }
      .case-box__main--items p {
        font-size: 2.4rem; }
      .case-box__main--items .btn a {
        width: 14.7rem; }
    .case-box__btn {
      padding: 6rem 0; }
  .reduce-box {
    padding-top: 42rem; }
    .reduce-box::before {
      background-image: url("../images/reduce-img_sp.webp");
      background-position: 0 0;
      background-repeat: no-repeat;
      background-size: 100% auto; }
    .reduce-box__main {
      display: block;
      padding: 8rem 0 12rem; }
      .reduce-box__main figure {
        margin-top: -35rem;
        width: 24.8rem; }
      .reduce-box__main--txt {
        line-height: 2; }
        .reduce-box__main--txt span {
          font-size: 3rem; }
  .disadvantages-box {
    padding: 12rem 0; }
    .disadvantages-box .head-box {
      margin-bottom: 8rem; }
    .disadvantages-box__main {
      grid-template-columns: repeat(1, 1fr);
      padding: 0; }
      .disadvantages-box__main::after {
        display: none; }
      .disadvantages-box__main--items h3 {
        font-size: 4rem;
        line-height: 8.2rem; }
      .disadvantages-box__main--items p span {
        font-size: 3.6rem; }
    .disadvantages-box__products {
      padding: 12rem 3rem; }
      .disadvantages-box__products--txt {
        padding-right: 0;
        margin-bottom: 36rem; }
        .disadvantages-box__products--txt span {
          font-size: 3.6rem; }
      .disadvantages-box__products--list {
        padding: 6rem 3rem; }
        .disadvantages-box__products--list::before {
          right: auto;
          left: 50%;
          top: -30rem;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); }
        .disadvantages-box__products--list ul li {
          font-size: 3.6rem;
          line-height: 5.4rem;
          margin-bottom: 5rem; }
          .disadvantages-box__products--list ul li::before {
            top: 1rem; }
          .disadvantages-box__products--list ul li small {
            font-size: 2.4rem; }
          .disadvantages-box__products--list ul li:last-child {
            margin-bottom: 0; }
      .disadvantages-box__products--des span {
        font-size: 3.6rem; }
  .worry-box {
    padding: 12rem 0 51.5rem;
    background-image: url("../images/worry-bg_sp.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover; }
    .worry-box__main ul {
      grid-template-columns: repeat(1, 1fr);
      gap: 2.4rem; }
      .worry-box__main ul li {
        font-size: 3rem;
        line-height: 4.5rem; }
    .worry-box__main--des {
      text-align: center;
      font-size: 4rem;
      line-height: 7rem; }
      .worry-box__main--des span {
        border-bottom: .6rem solid #FFFFFF; }
  .involves-box .head-box {
    margin-bottom: 8rem; }
    .involves-box .head-box h2 {
      font-size: 3.5rem; }
    .involves-box .head-box p {
      text-align: left; }
      .involves-box .head-box p span {
        font-size: 3.6rem; }
  .involves-box__main {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    grid-template-columns: 1fr;
    gap: 8rem; }
    .involves-box__main--txt {
      margin-left: 0; }
      .involves-box__main--txt .labels {
        font-size: 7.5rem; }
  .implant-box .head-box h2.sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem; }
    .implant-box .head-box h2.sp span {
      padding: 0 3rem; }
      .implant-box .head-box h2.sp span:first-child {
        padding: 0; }
      .implant-box .head-box h2.sp span:last-child::after {
        display: none; }
  .implant-box__main figure {
    margin-bottom: 12rem; }
    .implant-box__main figure img {
      max-width: 69rem; }
  .implant-box__main--txt {
    text-align: left; }
    .implant-box__main--txt p span {
      font-size: 3.6rem; }
  .implant-box__main--des {
    text-align: center; }
    .implant-box__main--des p {
      text-align: left; }
      .implant-box__main--des p span {
        font-size: 3.6rem; }
  .cost-box__main h3 {
    background: none;
    text-align: left;
    padding: 0;
    font-size: 4.6rem;
    line-height: 1; }
    .cost-box__main h3 span {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      background: #9e8a60;
      padding: 0 1rem;
      line-height: 9rem;
      margin-bottom: .8rem; }
  .cost-box__main--txt p span {
    font-size: 3.6rem; }
  .aesthetic-box__main h3 {
    background: none;
    text-align: left;
    padding: 0;
    font-size: 4.6rem;
    line-height: 1; }
    .aesthetic-box__main h3 span {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      background: #9e8a60;
      padding: 0 1rem;
      line-height: 9rem;
      margin-bottom: .8rem; }
  .aesthetic-box__main--txt p span {
    font-size: 3.6rem; }
  .reliability-box__main h3 {
    background: none;
    text-align: left;
    padding: 0;
    font-size: 4.6rem;
    line-height: 1; }
    .reliability-box__main h3 span {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      background: #9e8a60;
      padding: 0 1rem;
      line-height: 9rem;
      margin-bottom: .8rem; }
  .reliability-box__main--txt p span {
    font-size: 3.6rem; }
  .reliability-box__main--post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 4rem; }
    .reliability-box__main--post .txt span {
      font-size: 3.6rem; }
  .reliability-box__main--thumb figure {
    display: block;
    width: 128rem; }
  .overlooked-box__main {
    padding: 12rem 3rem 0; }
    .overlooked-box__main h2 {
      font-size: 4.6rem; }
    .overlooked-box__main--post {
      display: block; }
      .overlooked-box__main--post p span {
        font-size: 3.6rem; }
    .overlooked-box__main--txt span {
      font-size: 3.6rem; }
    .overlooked-box__main figure {
      width: 35.3rem;
      margin: 0 auto; }
  .for-box .head-box h2.sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem; }
    .for-box .head-box h2.sp span {
      font-size: 7.8rem;
      padding: 0 1rem; }
  .for-box__main {
    text-align: left; }
    .for-box__main figure {
      margin-bottom: 12rem; }
  .reason-box__main--txt p span {
    font-size: 3.6rem; }
  .reason-box__main--des {
    text-align: left; }
    .reason-box__main--des span {
      font-size: 4.6rem; }
  .plan-box__main {
    margin-bottom: 12rem; }
    .plan-box__main p {
      margin-bottom: 8rem; }
    .plan-box__main--list {
      gap: 4rem;
      grid-template-columns: 1fr; }
      .plan-box__main--list .items__title {
        line-height: 9.2rem;
        font-size: 4.1rem; }
      .plan-box__main--list .items__main {
        padding: 4rem 3rem; }
        .plan-box__main--list .items__main h3 {
          text-align: center;
          margin-bottom: 2rem;
          font-size: 3rem;
          line-height: 4.5rem;
          min-height: auto; }
          .plan-box__main--list .items__main h3 small {
            font-size: 2.4rem; }
        .plan-box__main--list .items__main .thumb {
          margin: 0 auto 2rem; }
        .plan-box__main--list .items__main p {
          font-size: 2.4rem;
          line-height: 4.8rem; }
      .plan-box__main--list .items__price {
        line-height: 9.2rem;
        font-size: 5.5rem; }
        .plan-box__main--list .items__price small {
          font-size: 3.4rem; }
  .plan-box__other {
    margin-bottom: 12rem; }
    .plan-box__other--des {
      font-size: 2.4rem;
      margin-bottom: 8rem; }
    .plan-box__other--list .js-scrollable {
      width: 128rem; }
  .plan-box__price--head {
    margin-bottom: 8rem; }
  .plan-box__price--des {
    font-size: 2.4rem;
    margin-bottom: 8rem; }
  .plan-box__price h3 {
    font-size: 4rem;
    line-height: 2; }
  .plan-box__price .dental-loan {
    padding: 6rem 3rem; }
    .plan-box__price .dental-loan__content {
      grid-template-columns: 1fr; }
    .plan-box__price .dental-loan__left h2 {
      font-size: 4.3rem; }
    .plan-box__price .dental-loan__left h3 {
      font-size: 3.6rem; }
    .plan-box__price .dental-loan__plan {
      padding: 0 5rem; }
  .flow-box__main--list {
    padding: 0 3rem 0 19rem; }
    .flow-box__main--list .items {
      grid-template-columns: 1fr; }
      .flow-box__main--list .items::after {
        top: 7rem; }
      .flow-box__main--list .items h3 {
        font-size: 4rem; }
      .flow-box__main--list .items p {
        font-size: 2.4rem; }
      .flow-box__main--list .items figure {
        width: 34rem; }
  .doctor-box .head-box {
    margin-bottom: 8rem; }
  .doctor-box__main--group {
    display: block; }
  .doctor-box__main--txt {
    margin-bottom: 8rem; }
  .doctor-box__main figure {
    margin-right: -3rem; }
  .clinic-box {
    padding: 12rem 0; }
    .clinic-box__main--calenda {
      gap: 8rem;
      grid-template-columns: 1fr; }
      .clinic-box__main--calenda .info .tel {
        max-width: 43.7rem;
        margin: 0 auto 6rem; }
      .clinic-box__main--calenda .info .contact {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 63rem;
        margin: 0 auto; }
  .floating-box {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%; }
    .floating-box__main {
      display: grid;
      grid-template-columns: repeat(2, 1fr); }
  .compare-table {
    width: 128rem; } }

/* ipad Portrait */
/* ipad Landscape */
