@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

/* 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);
  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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../libs/slickslider/css/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("../libs/slickslider/css/fonts/slick.eot");
  src: url("../libs/slickslider/css/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../libs/slickslider/css/fonts/slick.woff") format("woff"), url("../libs/slickslider/css/fonts/slick.ttf") format("truetype"), url("../libs/slickslider/css/fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: 0;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  padding: 0;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  background-color: #F08E8B;
}

.slick-dots li button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CAC9C7;
}

.slick-dots li.slick-active button:before {
  background-color: #F08E8B;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: top;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* value
   ========================================================================== */
:root {
  --font-family-00: 'DNPShueiMGoStd-L';
  --font-family-01: 'KaufmannStd-Bold';
  --font-family-02: 'TsukuAVintageMinLPro-R';
}

body {
  color: #504B46;
  font: 16px/1.8 var(--font-family-00);
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
    line-height: normal;
  }
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

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

a[href^="tel:"] {
  color: #504B46;
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

@media (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.ms-auto {
  margin-left: auto !important;
}

.fluid-img {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* fix col */
.row.-x15 {
  --bs-gutter-x: 15px;
}

.row.-x30 {
  --bs-gutter-x: 30px;
}

.row.-x60 {
  --bs-gutter-x: 60px;
}

.row.no-gutters80 {
  margin-right: -40px;
  margin-left: -40px;
}

.row.no-gutters80 > [class^="col"], .row.no-gutters80 > [class*=" col"] {
  padding-right: 40px;
  padding-left: 40px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #504B46;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.btn-primary {
  height: 50px;
  color: #504B46;
  background: #B7E8E5;
  border: 1px solid #B7E8E5;
  border-radius: 10px;
  min-width: 200px;
  -webkit-box-shadow: 3px 3px rgba(80, 75, 70, 0.3);
          box-shadow: 3px 3px rgba(80, 75, 70, 0.3);
  margin-bottom: 15px;
  line-height: 40px;
}

.btn-primary.btn-lg {
  min-width: 250px;
}

.btn-primary.btn-sm {
  min-width: 135px;
  height: 40px;
  line-height: 30px;
}

.btn-primary:hover {
  background: #7bded8;
  color: #fff;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

/*Flex */
.d-none {
  display: none !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .text-md-start {
    text-align: left !important;
  }
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.container, .container-sm, .container-1024, .container-1200, .container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1630px;
  }
}

@media (min-width: 1200px) {
  .container-sm {
    max-width: 1080px;
  }
}

@media (min-width: 1600px) {
  .container-sm {
    max-width: 1090px;
  }
}

.container-1024 {
  max-width: 1054px;
}

.container-1200 {
  max-width: 1230px;
}

@media (min-width: 992px) {
  .col-lg-20 {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 1600px) {
  .offset-lgg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lgg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
}

@media (min-width: 992px) {
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
}

@media (min-width: 768px) {
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  br.-mb {
    display: none;
  }
}

@media (max-width: 767px) {
  br.-pc {
    display: none;
  }
}

/*Fix image trong khung */
.dnfix__thumb {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  display: block;
  padding-top: 68.075%;
}

.dnfix__thumb img {
  margin: 0px auto;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.dnfix__thumb.-contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*sc-breadcrumb */
.sc-breadcrumb {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 26px;
}

.sc-breadcrumb .el__wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.sc-breadcrumb .el__wrap span {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-right: 10px;
}

.sc-breadcrumb .el__wrap a {
  display: inherit;
}

.animation-button {
  position: relative;
  overflow: hidden;
}

.animation-button:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #28a745;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.animation-button-2 {
  position: relative;
  overflow: hidden;
}

.animation-button-2:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fdf8e5;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.animated.animation-button:before, .animated.animation-button-2:before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.header {
  padding: 10px 0px;
}

.header--mb {
  display: none;
  background-color: #fff;
}

.header-mb__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-mb__text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-mb__text img {
  width: 242px;
  height: 23px;
}

@media (max-width: 991px) {
  .header--mb {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
  }
  .header--mb.fixed-header {
    -webkit-box-shadow: 0px 2px 5px #ccc;
            box-shadow: 0px 2px 5px #ccc;
  }
  .header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.btn-menu__mobile {
  display: none;
  position: relative;
  background: transparent;
  background-image: url(../images/menu-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  width: 31px;
  height: 31px;
  -webkit-transition: all ease .238s;
  transition: all ease .238s;
}

.btn-menu__mobile:before, .btn-menu__mobile:after, .btn-menu__mobile span {
  background-color: #fff;
  -webkit-transition: all ease .238s;
  transition: all ease .238s;
}

.btn-menu__mobile:before, .btn-menu__mobile:after {
  content: '';
  position: absolute;
  top: 0;
  height: 2px;
  width: 15px;
  left: calc(50% - 8px);
  top: 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 10px;
}

.btn-menu__mobile span {
  position: absolute;
  width: 15px;
  height: 2px;
  left: calc(50% - 8px);
  top: 50%;
  overflow: hidden;
  text-indent: 200%;
  border-radius: 10px;
}

.btn-menu__mobile:before {
  -webkit-transform: translate3d(0, -6px, 0);
  transform: translate3d(0, -6px, 0);
}

.btn-menu__mobile:after {
  -webkit-transform: translate3d(0, 6px, 0);
  transform: translate3d(0, 6px, 0);
}

.btn-menu__mobile.active span {
  opacity: 0;
}

.btn-menu__mobile.active:before {
  background-color: #333333;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}

.btn-menu__mobile.active:after {
  background-color: #333333;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

@media (max-width: 991px) {
  .btn-menu__mobile {
    display: block;
  }
}

.nav-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  top: 50px;
  opacity: 0;
  width: 100%;
  z-index: 1001;
  overflow: auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all .2s ease-in-out 0s;
  transition: all .2s ease-in-out 0s;
  background: #fff;
}

.nav-mobile__list {
  list-style: none;
  padding: 0;
}

.nav-mobile__list li {
  position: relative;
  font-size: 27px;
  font-weight: 700;
}

.nav-mobile__list li img {
  margin-right: 10px;
}

.nav-mobile__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 30px 15px;
  position: relative;
  color: #333333;
}

@media (max-width: 479px) {
  .nav-mobile__list li a {
    padding-left: 30px;
  }
}

.nav-mobile__list li.show-sub:before, .nav-mobile__list li.show-sub:after {
  position: absolute;
  right: 22px;
  top: 30px;
  content: "";
  width: 20px;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #b3b3b3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}

.nav-mobile__list li.show-sub:after {
  width: 2px;
  height: 20px;
  right: 40px;
  top: 22px;
}

.nav-mobile__list li.show-sub.active:after {
  opacity: 0;
}

@media (max-width: 479px) {
  .nav-mobile__list li {
    font-size: 20px;
    font-weight: 700;
  }
}

.nav-mobile__list .sub-menu {
  list-style: none;
  padding: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #f4f4f4;
}

.nav-mobile__list .sub-menu li {
  padding: 0px 35px 0px 65px;
}

@media (max-width: 479px) {
  .nav-mobile__list .sub-menu li {
    padding-left: 30px;
  }
}

.nav-mobile__list .sub-menu li a {
  position: relative;
  padding: 15px 0px 15px 15px;
}

.nav-mobile__list .sub-menu li a:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #2e922e;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.nav-mobile__list .sub-menu.show {
  height: auto;
  opacity: 1;
  overflow: visible;
}

@media (max-width: 479px) {
  .nav-mobile {
    top: 50px;
  }
}

body.show-menu {
  overflow: hidden;
}

.show-menu .nav-mobile {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.footer {
  background: #F2E2D7;
  position: relative;
  padding: 90px 0 40px;
  font-size: 18px;
  line-height: 35px;
}

.footer .container {
  max-width: 1400px;
}

.footer .el__title {
  margin-bottom: 15px;
}

.footer .el__sub {
  font-size: 18px;
  line-height: 35px;
  margin-bottom: 10px;
}

.footer .el__tel {
  font-size: 30px;
  line-height: 52px;
  margin-bottom: 15px;
}

.footer .schedule {
  margin-top: 15px;
}

.footer__socical {
  margin-bottom: 30px;
  text-align: center;
}

.footer__socical a:not(:last-child) {
  margin-right: 40px;
}

.footer__socical a img {
  border-radius: 50%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.footer__socical a:hover img {
  -webkit-box-shadow: 0px 2px 5px #222;
          box-shadow: 0px 2px 5px #222;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.footer__nav {
  font-size: 18px;
  background-color: #fff;
  padding: 20px 0;
}

.footer__nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-left: 0;
  margin: 0;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__nav ul li {
  position: relative;
  text-align: center;
}

.footer__nav ul a {
  position: relative;
  display: block;
  margin: 5px 20px;
  color: #504B46;
  text-decoration: none;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.footer__nav ul a::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #504B46;
}

@media (max-width: 1024px) {
  .footer__nav ul a {
    margin: 5px 15px;
  }
}

@media (max-width: 991px) {
  .footer__nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__nav ul li {
    -webkit-box-flex: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
  }
}

.footer__map {
  height: 0;
  overflow: hidden;
  padding-bottom: 80%;
  position: relative;
}

.footer__map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.footer__copyright {
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
  line-height: 35px;
  color: #504B46;
}

@media (max-width: 1599px) {
  .footer .el__title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 40px;
    font-size: 14px;
    line-height: normal;
  }
  .footer .el__box {
    text-align: center;
  }
  .footer .el__title {
    margin-bottom: 10px;
  }
  .footer .el__tel {
    font-size: 28px;
    line-height: 49px;
    margin-bottom: 5px;
    color: #7bded8;
  }
  .footer .el__sub {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0;
  }
  .footer__map {
    margin: 0 -15px;
  }
  .footer__socical {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .footer .container-sm {
    padding-right: 15px;
    padding-left: 15px;
  }
  .footer .row.no-gutters50 {
    margin-right: -15px;
    margin-left: -15px;
  }
  .footer .row.no-gutters50 > [class^="col"], .footer .row.no-gutters50 > [class*=" col"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .footer__copyright {
    font-size: 14px;
    padding-bottom: 70px;
  }
}

/*back to top */
.back__to--top {
  position: fixed;
  bottom: -100px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.back__to--top.active {
  bottom: 10px;
  opacity: 1;
}

@media (max-width: 767px) {
  .back__to--top.active {
    bottom: 50px;
  }
}

.back__to--top img {
  width: 80px;
  height: 80px;
}

@media (max-width: 767px) {
  .back__to--top {
    bottom: -45px;
  }
  .back__to--top img {
    width: 50px;
    height: 50px;
  }
}

.button__fix__pc {
  position: fixed;
  top: 110px;
  z-index: 99;
  right: 0;
}

.button__fix__pc a {
  display: block;
  background: #B7E8E5;
  color: #504B46;
  font-size: 18px;
  line-height: 35px;
  padding: 30px 7.5px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
          text-orientation: upright;
  margin-bottom: 15px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.button__fix__pc a:hover {
  background-color: #7bded8;
}

.button__fix__mb {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 99;
  left: 0;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button__fix__mb a {
  display: block;
  background: #B7E8E5;
  color: #fff;
  font-size: 18px;
  line-height: 33px;
  text-align: center;
  padding: 5px 7.5px;
  margin-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  min-width: 162px;
}

.button__fix__mb a:first-child {
  background-color: #504B46;
}

.button__fix__mb a + a {
  margin-left: 10px;
}

.button__fix__mb a img {
  position: relative;
  top: 6px;
  margin-right: 10px;
}

.button__fix__mb a:hover {
  background-color: #d8817e;
}

@media (max-width: 767px) {
  .button__fix__pc {
    display: none;
  }
  .button__fix__mb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .button__fix__pc {
    display: block;
  }
}

/* ---------------------------------------------------------
 *  switch
 *---------------------------------------------------------- */
#switch {
  position: fixed;
  bottom: 10%;
  left: 0;
  z-index: 999;
}

#switch ul li {
  margin-top: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3px;
}

#switch a {
  cursor: pointer;
  display: block;
  font-size: 0.8rem;
  color: #333;
}

.m-el__circle__header {
  margin-bottom: 100px;
  text-align: center;
}

.m-el__circle__header__wrap {
  position: relative;
  display: inline-block;
}

.m-el__circle__header__wrap:before {
  content: "";
  background-image: url(../images/home/home-clinic-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -90px;
  left: -85px;
  width: 365px;
  height: 235px;
  z-index: -1;
}

.m-el__circle__header__title {
  font-size: 44px;
  letter-spacing: 9px;
  line-height: normal;
  font-family: var(--font-family-02);
  font-weight: 400;
  margin-bottom: 0;
}

.m-el__circle__header__sub {
  font-size: 35px;
  line-height: normal;
  color: #B7E8E5;
  font-family: var(--font-family-01);
}

@media (max-width: 575px) {
  .m-el__circle__header {
    margin-bottom: 50px;
  }
  .m-el__circle__header__title {
    font-size: 28px;
  }
  .m-el__circle__header__sub {
    font-size: 25px;
  }
  .m-el__circle__header__wrap:before {
    top: -60px;
    left: -60px;
    width: 225px;
    height: 160px;
  }
}

.m-el__flag__header {
  margin-bottom: 100px;
  text-align: center;
}

.m-el__flag__header__wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 100px;
}

.m-el__flag__header__wrap:before {
  content: "";
  background-image: url(../images/bg_title_flag_green-orange.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 300px;
  height: 80px;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.m-el__flag__header__title {
  font-size: 44px;
  letter-spacing: 9px;
  line-height: normal;
  font-family: var(--font-family-02);
  font-weight: 400;
  margin-bottom: 0;
}

.m-el__flag__header__sub {
  font-size: 35px;
  line-height: normal;
  color: #B7E8E5;
  font-family: var(--font-family-01);
}

@media (max-width: 575px) {
  .m-el__flag__header {
    margin-bottom: 50px;
  }
  .m-el__flag__header__title {
    font-size: 28px;
  }
  .m-el__flag__header__sub {
    font-size: 25px;
  }
  .m-el__flag__header__wrap:before {
    width: 225px;
    height: 160px;
  }
}

.m-el__line__header {
  text-align: center;
  margin-bottom: 70px;
}

.m-el__line__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.m-el__line__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 15px;
  margin: auto;
}

@media (max-width: 575px) {
  .m-el__line__header__title {
    font-size: 28px;
    line-height: normal;
  }
}

.header-wellcome {
  font-size: 13px;
}

.header-wellcome h1 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .header-wellcome {
    font-size: 12px;
    text-align: center;
  }
}

.home-slider2 {
  overflow: hidden;
  background-image: url(../images/slider-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}

.home-slider2:before {
  content: "";
  background-image: url(../images/Untitled-1.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-slider2 .slick-slide {
  width: 1380px;
}

.home-slider2 .slick-list {
  margin: 0 -20px;
}

.home-slider2 .slick-slide > div {
  padding: 0 50px;
}

.home-slider2 .el__item {
  position: relative;
  z-index: 1;
}

.home-slider2 .el__item__wrap {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding: 50px 0;
}

.home-slider2 .el__item__wrap.-s1:before {
  content: "";
  background-image: url(../images/slider-mask1-border.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 85px);
  height: calc(100% + 30px);
  position: absolute;
  top: -15px;
  left: -50px;
}

.home-slider2 .el__item__wrap.-s1:after {
  content: "";
  background-image: url(../images/slider-mask1-border2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 45px);
  height: calc(100% + 30px);
  position: absolute;
  top: -15px;
  left: -30px;
}

.home-slider2 .el__item__wrap.-s1 .el__thumb img {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/slider-mask1.png);
  mask-image: url(../images/slider-mask1.png);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-slider2 .el__item__wrap.-s2 {
  max-width: 830px;
}

.home-slider2 .el__item__wrap.-s2:before {
  content: "";
  background-image: url(../images/slider-mask2-border.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 890px;
  width: calc(100% + 60px);
  height: 100%;
  position: absolute;
  top: -15px;
  left: -35px;
}

.home-slider2 .el__item__wrap.-s2:after {
  content: "";
  background-image: url(../images/slider-mask2-border2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 30px);
  height: 100%;
  position: absolute;
  top: -15px;
  left: -30px;
}

.home-slider2 .el__item__wrap.-s2 .el__thumb {
  padding-top: 66%;
}

.home-slider2 .el__item__wrap.-s2 .el__thumb img {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/slider-mask2.png);
  mask-image: url(../images/slider-mask2.png);
}

.home-slider2 .el__item__wrap.-s3 {
  max-width: 830px;
}

.home-slider2 .el__item__wrap.-s3:before {
  content: "";
  background-image: url(../images/slider-mask3-border.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 890px;
  width: calc(100% + 60px);
  height: 100%;
  position: absolute;
  top: -15px;
  left: -35px;
}

.home-slider2 .el__item__wrap.-s3:after {
  content: "";
  background-image: url(../images/slider-mask3-border2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 30px);
  height: 100%;
  position: absolute;
  top: -15px;
  left: -30px;
}

.home-slider2 .el__item__wrap.-s3 .el__thumb {
  padding-top: 66%;
}

.home-slider2 .el__item__wrap.-s3 .el__thumb img {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/slider-mask3.png);
  mask-image: url(../images/slider-mask3.png);
}

.home-slider2 .el__meta {
  position: absolute;
  top: 25%;
  right: 41%;
}

.home-slider2 .el__text {
  font-size: 27px;
  line-height: 55px;
  font-family: var(--font-family-02);
  letter-spacing: 10px;
  text-align: center;
}

.home-slider2 .el__thumb {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 62%;
  min-height: 420px;
}

@media (max-width: 1080px) {
  .home-slider2 .slick-slide {
    width: 767px;
  }
  .home-slider2 .el__meta {
    top: 32%;
    right: 12%;
  }
  .home-slider2 .el__text {
    font-size: 20px;
    line-height: normal;
  }
}

@media (max-width: 991px) {
  .home-slider2:before {
    background-size: 160%;
  }
  .home-slider2 .el__item__wrap {
    max-width: 600px;
  }
  .home-slider2 .el__item__wrap.-s1:before {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s1:after {
    background-size: contain;
    width: calc(100% + 45px);
    height: calc(100% + 30px);
    top: -15px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s2 {
    max-width: 600px;
  }
  .home-slider2 .el__item__wrap.-s2:before {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s2:after {
    background-size: contain;
    width: calc(100% + 30px);
    height: 100%;
    top: -15px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s2 .el__thumb {
    padding-top: 66%;
  }
  .home-slider2 .el__item__wrap.-s3 {
    max-width: 650px;
  }
  .home-slider2 .el__item__wrap.-s3:before {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s3:after {
    background-size: contain;
    width: calc(100% + 30px);
    height: 100%;
    top: -15px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s3 .el__thumb {
    padding-top: 66%;
  }
}

@media (max-width: 767px) {
  .home-slider2:before {
    background-size: 180% 100%;
  }
  .home-slider2 .el__meta {
    top: 45%;
    left: 0;
    width: 100%;
    letter-spacing: 5px;
  }
  .home-slider2 .el__text {
    letter-spacing: 3px;
  }
  .home-slider2 .el__item__wrap {
    max-width: calc(100% - 50px);
  }
  .home-slider2 .el__item__wrap.-s1:before {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s1:after {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s2 {
    max-width: calc(100% - 50px);
  }
  .home-slider2 .el__item__wrap.-s2:before {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s2:after {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s2 .el__thumb {
    padding-top: 66%;
  }
  .home-slider2 .el__item__wrap.-s3 {
    max-width: calc(100% - 50px);
  }
  .home-slider2 .el__item__wrap.-s3:before {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s3:after {
    background-size: 100% 100%;
    width: calc(100% + 50px);
    height: calc(100% - 50px);
    top: 20px;
    left: -30px;
  }
  .home-slider2 .el__item__wrap.-s3 .el__thumb {
    padding-top: 66%;
  }
  .home-slider2 .slick-slide > div {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .home-slider2:before {
    background-image: url(../images/Untitled-1-mb.png);
    background-size: 95% 90%;
  }
}

.home-slidelogo {
  position: absolute;
  top: 40px;
  left: 50%;
  max-width: 1230px;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0 15px;
  z-index: 1;
}

@media (max-width: 991px) {
  .home-slidelogo {
    display: none;
  }
}

.main__nav {
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 50px;
}

.main__nav.is-sticky {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  -webkit-box-shadow: 0px 2px 5px #ccc;
          box-shadow: 0px 2px 5px #ccc;
}

.main__nav .el__menu > li + li::after {
  content: "";
  width: 3px;
  height: 43px;
  background-image: url(../images/nav-line.png);
  background-size: contain;
  background-position: center;
  background-repeat-x: repeat;
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
}

.main__nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.main__nav ul .sub-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 205px;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  left: 0px;
  top: 100%;
  z-index: -1;
  text-align: left;
}

.main__nav ul .sub-menu li:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}

.main__nav ul .sub-menu li:hover {
  background-color: #B7E8E5;
}

.main__nav ul .sub-menu li:hover a {
  color: #fff;
}

.main__nav ul li {
  position: relative;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.main__nav ul li:hover .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 99;
}

.main__nav ul li:hover a {
  color: #B7E8E5;
}

.main__nav ul li a {
  display: block;
  padding: 5px 30px;
  color: #504B46;
  text-decoration: none;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.main__nav ul li img {
  display: block;
  margin: 0px auto 0;
  max-height: 25px;
}

@media (max-width: 992px) {
  .main__nav {
    display: none;
  }
}

@media (min-width: 993px) {
  .main__nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.main__nav .container {
  max-width: 1200px;
}

@media (max-width: 992px) {
  .sticky-wrapper {
    display: none;
  }
}

.home-intro {
  margin-bottom: 50px;
}

.home-intro__meta {
  font-size: 18px;
  line-height: 1.8;
}

.home-intro__title {
  margin-bottom: 10px;
}

.home-intro__tel {
  font-size: 30px;
  line-height: normal;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .home-intro {
    text-align: center;
  }
  .home-intro .table-schedule {
    margin: 0 auto 10px;
  }
}

@media (max-width: 767px) {
  .home-intro .table-schedule {
    margin: 0 0 10px;
    width: 100%;
  }
  .home-intro .home-intro__text {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .home-intro {
    margin-bottom: 20px;
  }
  .home-intro .home-intro__tel {
    display: none;
  }
  .home-intro .home-intro__meta {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 15px;
  }
}

.schedule {
  overflow: hidden;
}

.table-schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  color: #504B46;
  margin-bottom: 10px;
}

.table-schedule th, .table-schedule td {
  text-align: center;
  vertical-align: middle;
  padding: 4px 12px;
  min-width: 44px;
  font-weight: 400;
}

.table-schedule tr {
  border-bottom: 1px solid #504B46;
}

.table-schedule tbody td {
  color: #DEB69B;
}

@media (max-width: 1200px) {
  .table-schedule th, .table-schedule td {
    padding: 5px 3px;
    min-width: 44px;
  }
}

@media (max-width: 991px) {
  .table-schedule thead th:first-child {
    font-size: 19.5px;
    min-width: 170px;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .table-schedule th, .table-schedule td {
    padding: 4px 1px;
    letter-spacing: 0;
  }
}

@media (max-width: 991px) and (min-width: 480px) {
  .table-schedule thead th:first-child {
    font-size: 19.5px;
  }
}

@media (max-width: 991px) {
  .table-schedule th, .table-schedule td {
    min-width: 60px;
  }
}

@media (max-width: 767px) {
  .table-schedule th, .table-schedule td {
    min-width: 54px;
  }
  .table-schedule thead th:first-child {
    min-width: auto;
  }
}

@media (max-width: 600px) {
  .table-schedule {
    font-size: 14px;
  }
}

@media (max-width: 479px) {
  .table-schedule .schedule {
    font-size: 10px !important;
  }
  .table-schedule thead th:first-child {
    font-size: 12px !important;
    min-width: 105px;
  }
  .table-schedule th, .table-schedule td {
    min-width: 25px;
  }
}

@media (max-width: 353px) {
  .table-schedule thead th:first-child {
    min-width: 85px;
  }
}

.home-noteopen .el__box {
  font-size: 16px;
  line-height: normal;
  padding: 60px 50px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.home-noteopen .el__box img {
  margin: 20px auto;
}

.home-noteopen .el__box.-mask1 {
  background-image: url(../images/note-mask.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.home-noteopen .el__box.-mask2 {
  background-image: url(../images/note-mask2.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.home-noteopen .el__title {
  font-size: 30px;
  line-height: normal;
  color: #504B46;
  font-family: var(--font-family-02);
  margin-bottom: 0;
  font-weight: 400;
}

.home-noteopen .el__sub {
  font-size: 38px;
  color: #504B46;
  margin-bottom: 30px;
}

.home-noteopen .el__sub2 {
  font-size: 20px;
  color: #504B46;
  margin-bottom: 20px;
}

.home-noteopen .el__sub2 span {
  margin-left: 20px;
}

@media (max-width: 991px) {
  .home-noteopen .el__sub2 span {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .home-noteopen .el__sub {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .home-noteopen .el__sub2 span {
    display: block;
    margin-left: 0;
  }
  .home-noteopen .el__title {
    font-size: 22px;
  }
  .home-noteopen .el__box {
    font-size: 14px;
    padding: 30px 15px;
    margin-bottom: 15px;
  }
  .home-noteopen .el__box img {
    margin: 10px auto;
    max-width: 70%;
  }
}

.banner-btn {
  padding: 50px 0 35px;
}

.banner-btn a {
  display: block;
}

.banner-btn a img {
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.banner-btn a:hover img {
  -webkit-box-shadow: 0px 2px 5px #65605c;
          box-shadow: 0px 2px 5px #65605c;
}

@media (max-width: 767px) {
  .banner-btn {
    padding: 30px 0 15px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .banner-btn {
    padding: 15px 0 0;
  }
  .banner-btn.-st2 {
    padding: 100px 0 50px;
  }
}

.home-info {
  padding: 20px 0 35px;
}

.home-info__wrap {
  position: relative;
  margin-bottom: 20px;
  padding: 80px 100px 80px;
  background-image: url(../images/home-info.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.home-info__wrap:before {
  content: "";
  background-image: url(../images/home-info-top.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 140px;
  height: 132px;
  display: block;
  position: absolute;
  top: -30px;
  right: -45px;
}

.home-info__wrap:after {
  content: "";
  background-image: url(../images/home-info-bottom.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 91px;
  height: 105px;
  display: block;
  position: absolute;
  bottom: -15px;
  left: -35px;
}

.home-info .el__header__wrap {
  display: inline-block;
  margin: auto;
  position: relative;
  padding-left: 55px;
  margin-left: -55px;
}

.home-info .el__header__wrap:before {
  content: "";
  background-image: url(../images/bullhorn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 53px;
  height: 32px;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}

.home-info .el__header__title {
  font-size: 30px;
  line-height: normal;
  color: #504B46;
  font-family: var(--font-family-02);
  margin-bottom: 0;
  font-weight: 400;
}

.home-info .el__header__sub {
  font-size: 30px;
  line-height: normal;
  color: #504B46;
  font-family: var(--font-family-01);
}

.home-info .el__box {
  padding: 0px 40px 40px;
  overflow: auto;
  height: 215px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.home-info .el__box::-webkit-scrollbar {
  width: 8px;
}

.home-info .el__box::-webkit-scrollbar-track {
  background: #C3C3C3;
  border-radius: 10px;
}

.home-info .el__box::-webkit-scrollbar-thumb {
  background: #B7E8E5;
  border-radius: 10px;
}

.home-info .el__box::-webkit-scrollbar-thumb:hover {
  background: #B7E8E5;
}

.home-info .el__item {
  border-bottom: 1px solid #504B46;
  padding: 15px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #504B46;
}

.home-info .el__item__title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 170px;
  flex: 0 0 170px;
  max-width: 170px;
  padding-right: 10px;
  color: #DEB69B;
}

@media (max-width: 1199px) {
  .home-info__wrap:before {
    right: 0;
  }
  .home-info__wrap:after {
    left: 0;
  }
}

@media (max-width: 991px) {
  .home-info__wrap {
    padding: 80px 60px 80px;
  }
  .home-info .el__box {
    padding: 0px 15px 40px 0;
  }
}

@media (max-width: 767px) {
  .home-info__wrap:before {
    width: 95px;
    height: 90px;
    top: -20px;
    right: 0;
  }
  .home-info__wrap:after {
    width: 58px;
    height: 67px;
    left: 0;
  }
}

@media (max-width: 575px) {
  .home-info {
    padding: 15px 0 35px;
  }
  .home-info__wrap {
    background-image: url(../images/home-info-mb.png);
    padding: 50px 30px 50px;
  }
  .home-info .el__item {
    font-size: 15px;
  }
  .home-info .el__header__wrap {
    padding-left: 45px;
    margin-left: -45px;
  }
  .home-info .el__header__wrap:before {
    width: 43px;
    height: 25px;
  }
  .home-info .el__header__title {
    font-size: 24px;
  }
  .home-info .el__header__sub {
    font-size: 25px;
  }
}

.home-contact {
  padding: 50px 0;
}

.home-contact__line {
  position: relative;
  width: 100%;
  height: 13px;
  margin: 15px 0;
  background-image: url(../images/home-contact-line1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-contact__line::before, .home-contact__line::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 13px;
  height: 13px;
  background-image: url(../images/dot.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-contact__line::after {
  top: -2px;
  left: auto;
  right: -1px;
}

.home-contact__line.-s2 {
  background-image: url(../images/home-contact-line2.png);
}

.home-contact__line.-s2::before {
  left: 0;
  top: 0;
}

.home-contact__line.-s2::after {
  left: auto;
  top: 2px;
  right: -1px;
}

.home-contact .el__box {
  padding: 20px 0;
}

.home-contact .col--left, .home-contact .col--right {
  position: relative;
  padding: 15px 50px;
}

.home-contact .col--left + .col--right:after {
  content: "";
  background-image: url(../images/home-contact-line-right.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  .home-contact .col--left + .col--right:after {
    display: none;
  }
}

.home-contact .el__header__title {
  font-size: 25px;
  line-height: normal;
  color: #504B46;
  font-family: var(--font-family-02);
  margin-bottom: 0;
  font-weight: 400;
}

.home-contact .el__title {
  font-size: 25px;
  line-height: normal;
  color: #504B46;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font-family-02);
}

.home-contact .el__tel {
  font-size: 33px;
  line-height: normal;
  color: #7bded8;
  margin-bottom: 30px;
  padding-top: 10px;
}

.home-contact .el__tel a {
  color: #7bded8;
}

.home-contact__qr {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 133px;
  flex: 0 0 133px;
  max-width: 133px;
  margin-left: 15px;
}

@media (max-width: 991px) {
  .home-contact .col--left {
    padding: 15px 30px;
  }
  .home-contact .col--right {
    padding: 15px 30px;
  }
  .home-contact .el__title {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .home-contact__line {
    background-size: auto;
  }
  .home-contact__line::before {
    top: 0px;
    left: -2px;
  }
  .home-contact__line::after {
    top: 2px;
  }
  .home-contact__line.-s2:before {
    left: -2px;
  }
  .home-contact__line.-s2:after {
    top: 0px;
  }
  .home-contact .col--left:after {
    background-image: url(../images/line-bottom.png);
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    width: 80%;
    height: 3px;
    top: 100%;
    left: 0;
    max-width: 400px;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .home-contact .col--left {
    padding: 15px 20px;
  }
}

@media (max-width: 575px) {
  .home-contact {
    padding: 30px 0 50px;
  }
  .home-contact .el__box {
    padding: 0;
  }
  .home-contact .el__header__title {
    font-size: 22px;
  }
  .home-contact .el__line {
    margin: 15px 0;
    background-image: url(../images/home-contact-line1-mb.png);
  }
  .home-contact .el__line.-s2 {
    background-image: url(../images/home-contact-line2-mb.png);
  }
}

.home-calendar {
  margin-bottom: 60px;
}

.home-calendar .el__header {
  margin-bottom: 20px;
}

.home-calendar .el__header__wrap {
  display: inline-block;
  margin: auto;
  position: relative;
  padding-left: 55px;
  margin-left: -55px;
}

.home-calendar .el__header__wrap:before {
  content: "";
  background-image: url(../images/home-calendar-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 42px;
  height: 34px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
}

.home-calendar .el__header__title {
  font-size: 24px;
  line-height: normal;
  color: #504B46;
  font-family: var(--font-family-02);
}

.home-calendar .el__header__sub {
  font-size: 25px;
  line-height: normal;
  color: #504B46;
  font-family: var(--font-family-01);
}

.home-calendar .el__btn {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .home-calendar {
    padding: 50px 0;
  }
  .home-calendar .el__header {
    margin-bottom: 60px;
  }
}

.home-medical {
  padding: 265px 0 220px;
  background-image: url(../images/home-medical-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  overflow: hidden;
}

.home-medical .col--left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-medical .el__header {
  margin-bottom: 15px;
}

.home-medical .el__header__title {
  font-size: 50px;
  line-height: normal;
  letter-spacing: 20px;
  font-family: var(--font-family-02);
  font-weight: 400;
  margin-bottom: 0;
}

.home-medical .el__header__title span {
  position: relative;
  color: #7bded8;
}

.home-medical .el__header__title span::before {
  content: "";
  background-image: url(../images/crown.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 92px;
  height: 70px;
  position: absolute;
  top: -75px;
  left: -20px;
  z-index: -1;
}

.home-medical .el__title {
  font-size: 33px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: var(--font-family-02);
}

.home-medical .el__excerpt {
  line-height: 1.8;
}

.home-medical .el__thumb {
  position: relative;
  max-width: 715px;
  margin-bottom: 30px;
  margin-left: auto;
}

.home-medical .el__thumb .dnfix__thumb {
  padding-top: 71%;
}

.home-medical .el__thumb:before {
  content: "";
  background-image: url(../images/home-medical-border.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 15px);
  height: calc(100% + 17px);
  position: absolute;
  top: -20px;
  left: -28px;
  z-index: 1;
}

.home-medical .el__thumb img {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/home-medical-mask.png);
  mask-image: url(../images/home-medical-mask.png);
}

@media (max-width: 1599px) {
  .home-medical {
    padding: 240px 0 120px;
  }
  .home-medical .el__title {
    font-size: 28px;
  }
  .home-medical .el__thumb {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .home-medical .el__thumb {
    margin: 0 auto 30px;
  }
  .home-medical .el__title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-medical {
    background-image: url(../images/home-medical-mb-bg.png);
    padding: 115px 0 120px;
  }
  .home-medical .el__thumb {
    margin: 0 15px 30px;
  }
  .home-medical .el__thumb:before {
    width: calc(100% + 10px);
    left: -10px;
  }
}

@media (max-width: 575px) {
  .home-medical {
    padding: 115px 0 80px;
  }
  .home-medical .el__header__title {
    font-size: 28px;
  }
  .home-medical .el__header span::before {
    width: 60px;
    height: 50px;
    top: -50px;
    left: -17px;
  }
  .home-medical .el__box {
    padding: 0px 0;
  }
  .home-medical .el__title {
    font-size: 23px;
  }
  .home-medical__line {
    height: 17px;
    margin: 15px 0;
    background-image: url(../images/home-contact-line1-mb.png);
  }
  .home-medical__line.-s2 {
    background-image: url(../images/home-contact-line2-mb.png);
  }
}

@media (min-width: 1600px) {
  .home-medical .col--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
}

.home-greeting {
  padding: 100px 0;
  overflow: hidden;
}

.home-greeting .el__user__position {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 15px;
}

.home-greeting .el__user ruby {
  font-size: 26px;
  line-height: normal;
  margin-bottom: 30px;
}

.home-greeting .el__user rt {
  font-size: 14px;
  line-height: normal;
}

.home-greeting .el__header {
  position: relative;
  max-width: 1020px;
  margin: 0 auto 30px;
}

.home-greeting .el__header__wrap {
  position: relative;
  display: block;
}

.home-greeting .el__header__wrap:before {
  content: "";
  background-image: url(../images/home-greeting-header.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 1020px;
  max-width: 100%;
  height: 350px;
  z-index: -1;
}

.home-greeting .el__header__title {
  position: relative;
  font-size: 44px;
  line-height: 77px;
  padding: 125px 0 60px 205px;
  font-family: var(--font-family-02);
  font-weight: 400;
  margin-bottom: 0;
}

.home-greeting .el__title {
  font-size: 33px;
  line-height: 54px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: var(--font-family-02);
}

.home-greeting .el__excerpt {
  margin-bottom: 50px;
  line-height: 1.8;
}

.home-greeting .el__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.home-greeting .el__line {
  width: 100%;
  height: 17px;
  margin: 0 0 15px;
  background-image: url(../images/home-greeting-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-greeting .el__clgt {
  margin-bottom: 30px;
}

.home-greeting .el__thumb {
  position: relative;
  max-width: 520px;
  margin: 0 auto 40px;
}

.home-greeting .el__thumb .dnfix__thumb {
  padding-top: 100%;
}

.home-greeting .el__thumb:before {
  content: "";
  background-image: url(../images/greeting-img-border.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 45px);
  height: calc(100% + 40px);
  position: absolute;
  top: -23px;
  left: -40px;
  z-index: 1;
}

.home-greeting .el__thumb img {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/greeting-img-mask.png);
  mask-image: url(../images/greeting-img-mask.png);
}

@media (max-width: 1299px) {
  .home-greeting .el__thumb {
    margin: 0 50px 40px;
  }
}

@media (max-width: 991px) {
  .home-greeting {
    padding: 0 0 50px;
  }
  .home-greeting .el__thumb {
    margin: 0 auto 40px;
  }
  .home-greeting .el__user {
    margin-bottom: 20px;
  }
  .home-greeting .el__title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-greeting {
    padding: 80px 0 50px;
  }
  .home-greeting .el__header__title {
    padding: 70px 0 20px 155px;
  }
  .home-greeting .el__header__wrap:before {
    background-image: url(../images/home-greeting-mb-header.png);
    height: 155px;
  }
  .home-greeting .el__excerpt {
    font-size: 15px;
  }
}

@media (max-width: 620px) {
  .home-greeting .el__thumb {
    margin: 0 50px 40px;
  }
}

@media (max-width: 575px) {
  .home-greeting .el__header {
    margin: 0 auto 0;
  }
  .home-greeting .el__header__title {
    padding: 0 10px 40px 40px;
    font-size: 28px;
  }
  .home-greeting .el__header__wrap:before {
    top: -45px;
  }
  .home-greeting .el__position {
    font-size: 16px;
  }
  .home-greeting .el__name {
    font-size: 11px;
  }
  .home-greeting .el__address {
    font-size: 21px;
  }
  .home-greeting .el__title {
    font-size: 24px;
    line-height: normal;
  }
  .home-greeting .el__line {
    background-image: url(../images/home-greeting-line-mb.png);
  }
}

@media (min-width: 1600px) {
  .home-greeting .container {
    max-width: 1330px;
  }
}

.home-featured {
  background-image: url(../images/home-featured-bg.png);
  padding: 220px 0 130px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  overflow: hidden;
}

.home-featured .el__header {
  margin-bottom: 120px;
}

.home-featured .el__header__wrap {
  position: relative;
  display: inline-block;
}

.home-featured .el__header__wrap:before {
  content: "";
  background-image: url(../images/home/home-featured-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -180px;
  left: 25%;
  width: 490px;
  height: 420px;
  z-index: -1;
}

.home-featured .el__header__title {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: normal;
  letter-spacing: 9px;
  font-family: var(--font-family-02);
}

.home-featured .el__header__sub {
  font-size: 35px;
  line-height: normal;
  color: #7bded8;
  font-family: var(--font-family-01);
}

.home-featured .el__row {
  padding: 45px 0;
}

.home-featured .el__top {
  margin-bottom: 30px;
}

.home-featured .el__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 52px;
  margin-bottom: 0;
}

.home-featured .el__number {
  position: relative;
  top: 6px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  max-width: 100px;
  text-align: center;
}

.home-featured .el__number img {
  max-height: 83px;
}

.home-featured .el__thumb {
  position: relative;
  max-width: 730px;
  margin-left: auto;
  margin-bottom: 15px;
}

.home-featured .el__thumb .dnfix__thumb {
  padding-top: 66%;
}

.home-featured .el__thumb:before {
  content: "";
  background-image: url(../images/featured-border-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 5px);
  height: calc(100% + 10px);
  position: absolute;
  top: 0;
  left: -15px;
  z-index: 1;
}

.home-featured .el__thumb img {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/featured-mask.png);
  mask-image: url(../images/featured-mask.png);
}

.home-featured .el__thumb.-st2:before {
  background-image: url(../images/featured-border-2.png);
}

.home-featured .el__thumb.-st3:before {
  background-image: url(../images/featured-border-3.png);
}

.home-featured .el__thumb.-st4:before {
  background-image: url(../images/featured-border-4.png);
}

@media (max-width: 1599px) {
  .home-featured {
    padding: 100px 0 150px;
  }
  .home-featured .el__header {
    margin-bottom: 50px;
  }
  .home-featured .row.-row80 {
    --bs-gutter-x: 40px;
  }
}

@media (max-width: 1200px) {
  .home-featured {
    padding: 80px 0 80px;
  }
  .home-featured .el__header__wrap:before {
    width: 330px;
    height: 280px;
    top: -75%;
  }
  .home-featured .el__number {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75px;
    flex: 0 0 75px;
    max-width: 75px;
  }
  .home-featured .el__number img {
    max-height: 83px;
  }
  .home-featured .el__row {
    padding: 30px 0;
  }
  .home-featured .el__top {
    margin-bottom: 15px;
  }
  .home-featured .el__title {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .home-featured {
    padding: 50px 0 40px;
  }
  .home-featured .el__thumb {
    max-width: 550px;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .home-featured {
    background-image: url(../images/home-featured-mb-bg.png);
  }
  .home-featured .el__title {
    line-height: normal;
  }
  .home-featured .el__number {
    top: 12px;
  }
  .home-featured .el__number img {
    max-height: 60px;
  }
  .home-featured .el__top {
    margin-bottom: 20px;
  }
  .home-featured .el__thumb {
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .home-featured .el__thumb:before {
    left: -5px;
  }
  .home-featured .el__meta {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  .home-featured .el__header__wrap:before {
    width: 220px;
    height: 190px;
  }
  .home-featured .el__header__title {
    font-size: 28px;
  }
  .home-featured .el__header__sub {
    font-size: 25px;
  }
  .home-featured .el__title {
    font-size: 18px;
    line-height: 28px;
  }
  .home-featured .el__number {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45px;
    flex: 0 0 45px;
    max-width: 45px;
    top: 4px;
  }
  .home-featured .el__number img {
    max-height: 50px;
  }
}

@media (min-width: 1600px) {
  .home-featured .col--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
}

.home-service {
  position: relative;
  padding: 250px 0 160px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.home-service .container {
  position: relative;
  z-index: 1;
}

.home-service:before {
  content: "";
  background-image: url(../images/home-service-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-service ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.home-service ul li:nth-child(2n) .el__title {
  background-image: url(../images/box-2.png);
}

.home-service .el__box {
  max-width: 960px;
  margin: auto;
  min-height: 530px;
}

.home-service .el__header {
  margin-bottom: 100px;
}

.home-service .el__header__wrap {
  position: relative;
  display: inline-block;
}

.home-service .el__header__wrap:before {
  content: "";
  background-image: url(../images/home-service-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -90px;
  left: -10px;
  width: 365px;
  height: 235px;
  z-index: -1;
}

.home-service .el__header__title {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 6px;
  line-height: normal;
  font-family: var(--font-family-02);
}

.home-service .el__header__sub {
  font-size: 35px;
  line-height: normal;
  color: #7bded8;
  font-family: var(--font-family-01);
}

.home-service .el__item {
  display: block;
  font-size: 18px;
  color: #504B46;
  text-align: center;
  text-decoration: none;
  margin-bottom: 50px;
}

.home-service .el__thumb {
  height: 80px;
  margin-bottom: 15px;
}

.home-service .el__title {
  position: relative;
  line-height: 22px;
  background-image: url(../images/box-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 12px 0px 26px;
}

@media (max-width: 1599px) {
  .home-service {
    padding: 100px 0 150px;
  }
  .home-service .el__header {
    margin-bottom: 50px;
  }
  .home-service .el__header__wrap:before {
    top: -75px;
    left: -10px;
    width: 280px;
    height: 235px;
  }
}

@media (max-width: 1499px) {
  .home-service {
    background-size: cover;
  }
  .home-service:before {
    background-size: cover;
  }
}

@media (max-width: 991px) {
  .home-service {
    padding: 120px 0 80px;
  }
}

@media (max-width: 767px) {
  .home-service .el__box {
    min-height: auto;
  }
  .home-service:before {
    background-image: url(../images/home-service-bg2.png);
  }
  .home-service:after {
    content: "";
    background: url(../images/home-service-bg-mb.png);
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-size: cover;
  }
  .home-service ul {
    --bs-gutter-x: 1rem;
  }
  .home-service .el__title {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .home-service .el__item {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .home-service .el__header__wrap:before {
    top: -40px;
    left: -10px;
    width: 215px;
    height: 140px;
  }
  .home-service .el__header__title {
    font-size: 28px;
  }
  .home-service .el__header__sub {
    font-size: 25px;
  }
  .home-service .el__thumb {
    height: 60px;
    margin-bottom: 15px;
  }
  .home-service .el__thumb img {
    max-height: 50px;
    max-width: 60px;
  }
}

.home-clinic {
  padding: 120px 0 65px;
}

.home-clinic .el__header {
  margin-bottom: 100px;
}

.home-clinic .el__header__wrap {
  position: relative;
  display: inline-block;
}

.home-clinic .el__header__wrap:before {
  content: "";
  background-image: url(../images/home/home-clinic-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -90px;
  left: -85px;
  width: 365px;
  height: 235px;
  z-index: -1;
}

.home-clinic .el__header__title {
  font-size: 44px;
  letter-spacing: 9px;
  line-height: normal;
  font-family: var(--font-family-02);
  font-weight: 400;
  margin-bottom: 0;
}

.home-clinic .el__header__sub {
  font-size: 35px;
  line-height: normal;
  color: #7bded8;
  font-family: var(--font-family-01);
}

.home-clinic .el__header__excerpt {
  margin-bottom: 50px;
}

.home-clinic .el__box {
  margin-bottom: 30px;
}

.home-clinic .el__item {
  display: block;
  text-align: center;
  margin-bottom: 30px;
  font-size: 23px;
  line-height: 1.8;
  color: #504B46;
}

.home-clinic .el__thumb {
  position: relative;
}

.home-clinic .el__thumb img {
  border-radius: 15px;
}

.home-clinic .el__thumb:after {
  content: "";
  background-image: url(../images/home-clinic-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  top: -15px;
  left: -12px;
  width: calc(100% + 6px);
  height: calc(100% + 10px);
}

.home-clinic .el__thumb.-border-2:after {
  background-image: url(../images/home-clinic-border-2.png);
}

.home-clinic .el__thumb.-border-3:after {
  background-image: url(../images/home-clinic-border-3.png);
}

.home-clinic .el__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home-clinic .el__btn .btn {
  margin: 0 10px;
}

@media (max-width: 767px) {
  .home-clinic .el__thumb {
    margin-bottom: 10px;
  }
  .home-clinic .el__thumb:after {
    top: -8px;
    left: -8px;
  }
}

@media (max-width: 575px) {
  .home-clinic .el__header {
    margin-bottom: 50px;
  }
  .home-clinic .el__header__title {
    font-size: 28px;
  }
  .home-clinic .el__header__sub {
    font-size: 25px;
  }
  .home-clinic .el__header__wrap:before {
    top: -60px;
    left: -60px;
    width: 225px;
    height: 160px;
  }
  .home-clinic .el__item {
    font-size: 14px;
    line-height: normal;
  }
  .home-clinic .el__btn {
    display: block;
  }
  .home-clinic .el__btn .btn {
    margin: 10px 0 0;
  }
}

.home-visitus {
  display: none;
  padding: 140px 0 60px;
  overflow: hidden;
}

.home-visitus .el__header {
  margin-bottom: 100px;
}

.home-visitus .el__header__wrap {
  position: relative;
  display: inline-block;
  padding-left: 44px;
  margin-left: -44px;
}

.home-visitus .el__header__wrap:before {
  content: "";
  background-image: url(../images/visitus-flag.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 43px;
  height: 49px;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
}

.home-visitus .el__header__wrap:after {
  content: "";
  background-image: url(../images/visitus-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -90px;
  left: 10px;
  width: 365px;
  height: 235px;
  z-index: -1;
}

.home-visitus .el__header__title {
  font-size: 35px;
  letter-spacing: 5px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.home-visitus .el__header__sub {
  font-size: 35px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 0;
  font-family: var(--font-family-01);
}

.home-visitus .el__title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 43px;
  color: #504B46;
  font-family: var(--font-family-02);
}

.home-visitus .el__item {
  margin-bottom: 30px;
}

.home-visitus .el__item img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.home-visitus .instagram__box {
  margin-top: 90px;
}

.home-visitus .instagram__box .el__line {
  margin-bottom: 35px;
}

.home-visitus .instagram__box .instagram__item {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .home-visitus {
    padding: 60px 0 30px;
  }
}

@media (max-width: 575px) {
  .home-visitus .el__title {
    font-size: 20px;
  }
  .home-visitus .el__header {
    margin-bottom: 40px;
  }
  .home-visitus .el__header__title {
    font-size: 28px;
  }
  .home-visitus .el__header__sub {
    font-size: 25px;
  }
  .home-visitus .el__header__wrap:after {
    top: -45px;
    left: 65px;
    width: 175px;
    height: 155px;
  }
}

.home-clgt {
  font-size: 16px;
  line-height: 32px;
  color: #504B46;
  padding: 0px 0 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/home-clgt-bg.png);
}

.home-clgt .el__box {
  position: relative;
  background-image: url(../images/home-clgt-box.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 50px 50px;
}

.home-clgt .el__box:before {
  content: "";
  background-image: url(../images/home-clgt-bg-top.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 267px;
  height: 87px;
  display: block;
  position: absolute;
  top: -20px;
  left: -40px;
}

.home-clgt .el__box:after {
  content: "";
  background-image: url(../images/home-clgt-pc-bg-bottom.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -25px;
  right: -105px;
  width: 165px;
  height: 172px;
}

.home-clgt .el__item {
  padding: 20px 20px;
}

.home-clgt .el__item--left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  max-width: 160px;
  margin-right: 20px;
  text-align: center;
}

.home-clgt .el__item--right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.home-clgt .el__item.-st1 {
  background-image: url(../images/home-clgt-item-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.home-clgt .el__item.-st2 {
  background-image: url(../images/home-clgt-item-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.home-clgt .el__item.-st3 {
  background-image: url(../images/home-clgt-item-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 1240px) {
  .home-clgt .el__box:after {
    right: -40px;
    width: 135px;
    height: 135px;
  }
}

@media (max-width: 1120px) {
  .home-clgt .el__box:before {
    width: 230px;
    height: 75px;
    top: -30px;
    left: -10px;
  }
  .home-clgt .el__box:after {
    bottom: -25px;
    right: -10px;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 991px) {
  .home-clgt {
    padding: 0px 0 50px;
  }
}

@media (max-width: 767px) {
  .home-clgt {
    background: transparent;
  }
  .home-clgt .el__box {
    background: transparent;
    padding: 50px 30px 70px;
  }
  .home-clgt .el__box:before {
    content: "";
    background-image: url(../images/home-clgt-bg-top.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 230px;
    height: 75px;
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
  }
  .home-clgt .el__box:after {
    content: "";
    background-image: url(../images/home-clgt-bg-bottom.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    right: 30px;
    width: 70px;
    height: 74px;
    z-index: 1;
  }
}

@media (max-width: 575px) {
  .home-clgt {
    font-size: 14px;
  }
  .home-clgt .el__box {
    padding: 65px 0px 70px;
  }
  .home-clgt .el__item--left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    max-width: 60px;
  }
}

@media (min-width: 1400px) {
  .home-clgt .container-sm {
    max-width: 1180px;
  }
}

.home-3box {
  padding-bottom: 100px;
}

.home-3box .el__line {
  position: relative;
  width: 100%;
  height: 13px;
  margin: 15px 0;
  background-image: url(../images/home-3box-line-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-3box .el__line::before, .home-3box .el__line::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 13px;
  height: 13px;
  background-image: url(../images/dot.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-3box .el__line::before {
  left: -2px;
}

.home-3box .el__line::after {
  top: -2px;
  left: auto;
  right: -1px;
}

.home-3box .el__line.-s2 {
  background-image: url(../images/home-3box-line-2.png);
}

.home-3box .el__line.-s2::before {
  top: 0;
}

.home-3box .el__line.-s2::after {
  left: auto;
  top: 2px;
  right: -1px;
}

.home-3box .el__col {
  position: relative;
}

.home-3box .el__col:not(:last-child)::after {
  content: "";
  background-image: url(../images/line-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
}

.home-3box .el__col:first-child .el__item {
  padding-left: 0;
}

.home-3box .el__col:nth-child(3n) .el__item {
  padding-right: 0;
}

.home-3box .el__item {
  padding: 15px 40px;
}

.home-3box .el__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: #504B46;
  margin-bottom: 15px;
  font-family: var(--font-family-02);
  text-align: center;
}

.home-3box .el__excerpt {
  min-height: 150px;
}

.home-3box img {
  margin: 25px 0;
}

@media (max-width: 991px) {
  .home-3box {
    padding-bottom: 50px;
  }
  .home-3box .el__item {
    padding: 15px 15px;
  }
}

@media (max-width: 767px) {
  .home-3box {
    padding-bottom: 30px;
  }
  .home-3box .el__title {
    text-align: center;
  }
  .home-3box .el__excerpt {
    min-height: auto;
    margin-bottom: 15px;
  }
  .home-3box .el__col {
    position: relative;
  }
  .home-3box .el__col:not(:last-child) {
    margin-bottom: 30px;
  }
  .home-3box .el__col:not(:last-child)::after {
    content: "";
    background-image: url(../images/line-bottom.png);
    background-position: center;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: 100%;
    right: 15px;
    width: calc(100% - 30px);
    height: 4px;
  }
  .home-3box .el__col:first-child .el__item {
    padding-top: 0;
    padding-left: 15px;
  }
  .home-3box .el__col:nth-child(3n) .el__item {
    padding-right: 15px;
  }
}

.header__textclgt {
  margin-top: 15px;
}

.header__textclgt .el__box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.header__textclgt .el--right {
  margin-left: auto;
}

.header__textclgt .el__title {
  font-size: 28px;
  line-height: 34px;
  color: #504B46;
  margin-bottom: 15px;
}

.header__textclgt .el__title img {
  position: relative;
  top: 3px;
  width: 400px;
  max-width: 100%;
  height: 35px;
  margin-right: 10px;
}

.header__textclgt .el__tel {
  font-size: 23px;
  line-height: 27px;
  color: #B7E8E5;
  margin-bottom: 15px;
  margin-right: 30px;
}

.header__textclgt .el__tel > span {
  font-size: 32px;
  line-height: 38px;
  margin-left: 8px;
}

.header__textclgt .el__tel a {
  color: #B7E8E5;
}

.header__textclgt .el__btn + .el__btn {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .header__textclgt .el__title {
    display: none;
  }
  .header__textclgt .el--right {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .header__textclgt {
    display: none;
  }
}

.page__header {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  padding: 30px 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.page__header:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/page-header-bg1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page__header:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/page-header-bg2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page__header .el__box {
  min-width: 320px;
  padding: 130px 111px;
  text-align: center;
  background-image: url(../images/page-header-box.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: inline-block;
  margin: auto;
  z-index: 1;
}

.page__header .el__box__wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page__header .el__box__wrapper:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  background-image: url(../images/page__header-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

@media (max-width: 1600px) {
  .page__header .el__box {
    padding: 4.5vw 111px;
  }
}

.page__header .el__title {
  font-size: 44px;
  font-weight: 500;
  line-height: 77px;
  margin-bottom: 0;
  letter-spacing: 5px;
  font-family: var(--font-family-02);
}

.page__header .el__sub {
  font-size: 35px;
  font-weight: 500;
  line-height: normal;
  color: #B7E8E5;
  margin-bottom: 0;
  font-family: var(--font-family-01);
}

@media (max-width: 991px) {
  .page__header {
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .page__header .container {
    padding: 0;
  }
  .page__header .el__box {
    padding: 130px 75px;
  }
  .page__header .el__box__wrapper {
    background-size: cover;
  }
  .page__header .el__box__wrapper:before {
    background-size: cover;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 575px) {
  .page__header .el__box {
    padding: 130px 40px;
  }
  .page__header .el__title {
    font-size: 28px;
    line-height: normal;
  }
  .page__header .el__sub {
    font-size: 25px;
    line-height: normal;
  }
}

.access__map {
  padding: 50px 0;
}

.access__map .el__header {
  text-align: center;
  margin-bottom: 50px;
}

.access__map .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.access__map .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 15px;
  margin: 10px auto 0;
}

.access__map .el__map {
  margin-bottom: 50px;
}

.access__map .el__gmap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  height: 0;
  overflow: hidden;
  padding-bottom: 38%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.access__map .el__gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media (max-width: 575px) {
  .access__map {
    padding: 30px 0;
  }
  .access__map .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
  .access__map .el__gmap {
    padding-bottom: 60%;
  }
}

.access__trans {
  padding: 50px 0;
}

.access__trans .el__header__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 52px;
  color: #504B46;
}

.access__trans .el__ul {
  margin-bottom: 0;
}

.access__trans .el__line {
  width: 100%;
  height: 17px;
  margin: 0 0;
  background-image: url(../images/access__trans-line-top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.access__trans .el__line.-bottom {
  background-image: url(../images/access__trans-line-bottom.png);
}

.access__trans .el__li {
  position: relative;
}

.access__trans .el__li + li::before {
  content: "";
  background-image: url(../images/access__trans-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 3px;
}

.access__trans .el__li__wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  padding: 25px 10px;
}

.access__trans .el__icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 94px;
  flex: 0 0 94px;
  max-width: 94px;
  width: 94px;
  height: 94px;
  margin-right: 30px;
  background-image: url(../images/access__trans-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.access__trans .el__icon img {
  max-width: 54px;
}

.access__trans .el__title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  max-width: 200px;
  margin-right: 30px;
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 0;
}

.access__trans .el__sub {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .access__trans .el__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
    max-width: 170px;
    font-size: 20px;
    line-height: normal;
  }
}

@media (max-width: 575px) {
  .access__trans {
    text-align: center;
  }
  .access__trans .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
  .access__trans .el__li__wrap {
    display: block;
    padding: 15px 10px 15px;
  }
  .access__trans .el__icon {
    margin: auto;
  }
  .access__trans .el__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
}

.access__box3 {
  padding: 100px 0;
}

.access__box3 .el__thumb {
  padding-top: 68.075%;
}

.access__box3 .el__item {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .access__box3 {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .access__box3 {
    padding: 30px 0;
  }
}

.access__details {
  padding: 50px 0;
  overflow: hidden;
}

.access__details .el__header {
  text-align: center;
  margin-bottom: 50px;
}

.access__details .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  font-weight: 500;
  letter-spacing: 5px;
  font-family: var(--font-family-02);
}

.access__details .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 15px;
  margin: 10px auto 0;
}

.access__details .el__box {
  position: relative;
}

.access__details .el__item {
  padding: 20px 20px;
}

.access__details .el__item--left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  max-width: 160px;
  margin-right: 20px;
  text-align: center;
}

.access__details .el__item--right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.access__details .el__item.-st1 {
  background-image: url(../images/home-clgt-item-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.access__details .el__item.-st2 {
  background-image: url(../images/home-clgt-item-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.access__details .el__item.-st3 {
  background-image: url(../images/home-clgt-item-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.access__details .el__item.-st4 {
  background-image: url(../images/home-clgt-item-4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.access__details .table-schedule {
  width: 100%;
}

@media (max-width: 991px) {
  .access__details .table-schedule th, .access__details .table-schedule td {
    min-width: 40px;
  }
}

@media (max-width: 767px) {
  .access__details .el__item--left {
    font-size: 18px;
    margin-bottom: 8px;
    max-width: 100%;
    margin-right: 0;
  }
  .access__details .el__item--right {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .access__details {
    font-size: 14px;
  }
  .access__details .el__header {
    margin-bottom: 30px;
  }
  .access__details .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
  .access__details .table-schedule th, .access__details .table-schedule td {
    min-width: 20px;
  }
  .access__details .el__box {
    padding: 0px;
  }
  .access__details .el__item {
    padding: 20px 20px;
  }
  .access__details .el__item--left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }
}

.access__info {
  padding: 100px 30px 200px;
}

.access__info .el__header {
  text-align: center;
  margin-bottom: 50px;
}

.access__info .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.access__info .el__box {
  position: relative;
  padding: 60px 85px 40px;
  background-image: url(../images/access__info-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.access__info .el__box:before {
  content: "";
  background-image: url(../images/ttl_information.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -40px;
  left: -40px;
  width: 268px;
  height: 88px;
}

.access__info .el__item {
  position: relative;
  margin-bottom: 40px;
}

.access__info .el__number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 73px;
  height: 73px;
  background-image: url(../images/access__info-number-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  font-size: 31px;
  line-height: 73px;
  text-align: center;
  color: #504B46;
}

.access__info .el__number.-st2 {
  background-image: url(../images/access__info-number-2.png);
}

.access__info .el__thumb {
  position: relative;
  margin-bottom: 25px;
}

.access__info .el__thumb .dnfix__thumb {
  padding-top: 68.075%;
}

.access__info .el__title {
  min-height: 115px;
  font-size: 16px;
  line-height: 1.8;
  color: #504B46;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .access__info {
    padding: 100px 30px 100px;
  }
  .access__info .el__box {
    padding: 60px 30px 30px;
  }
}

@media (max-width: 767px) {
  .access__info .el__title {
    min-height: auto;
  }
  .access__info .el__box {
    background: transparent;
    padding: 60px 0px 30px;
  }
  .access__info .el__box:before {
    width: 230px;
    height: 75px;
    position: absolute;
    top: 0px;
    left: 0;
  }
}

@media (max-width: 575px) {
  .access__info {
    padding: 0px 30px 0px;
  }
  .access__info .el__box:before {
    top: -10px;
  }
  .access__info .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
}

@media (min-width: 768px) {
  .access__info .el__item:not(:nth-child(3n)) .el__thumb::after {
    content: "";
    position: absolute;
    background-image: url(../images/arow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 20px;
    height: 38px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -25px;
    color: #B7E8E5;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .access__info .el__item:nth-child(2n + 1) .el__thumb::after {
    content: "";
    position: absolute;
    background-image: url(../images/arow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 20px;
    height: 38px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -25px;
    color: #B7E8E5;
  }
}

.clinic__intro {
  padding: 50px 0;
  overflow: hidden;
}

.clinic__intro__text {
  font-size: 16px;
  line-height: 1.8;
  color: #504B46;
  margin-bottom: 50px;
}

.clinic__intro .el__header {
  text-align: center;
  margin-bottom: 50px;
}

.clinic__intro .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.clinic__intro .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 15px;
  margin: 10px auto 0;
}

@media (max-width: 575px) {
  .clinic__intro {
    padding: 30px 0;
  }
  .clinic__intro .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
}

.clinic__slider .el__item {
  position: relative;
  z-index: 1;
}

.clinic__slider .el__item--sm {
  border-radius: 20px;
  cursor: pointer;
}

.clinic__slider .el__item--sm .el__thumb {
  border-radius: 20px;
  overflow: hidden;
}

.clinic__slider-for {
  margin-bottom: 40px;
}

.clinic__slider-for .el__item {
  max-width: 850px;
}

.clinic__slider-for .el__thumb {
  position: relative;
}

.clinic__slider-for .el__thumb::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-image: url(../images/clinic-intro-wrap.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.clinic__slider-for .el__thumb img {
  width: 100%;
  border-radius: 30px;
}

.clinic__slider-for .el__text {
  position: absolute;
  z-index: 1;
  bottom: -55px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 54%;
  height: 70px;
  line-height: 60px;
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 0;
  color: #504B46;
  background-image: url(../images/slider__text.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.clinic__slider-for .el__excerpt {
  margin-top: 90px;
  line-height: 1.8;
}

.clinic__slider-for .slick-list {
  margin: 0 -30px;
}

.clinic__slider-for .slick-slide > div {
  padding: 40px 80px 0;
  margin: 0 30px 0px;
}

.clinic__slider-for .slick-prev, .clinic__slider-for .slick-next {
  width: 68px;
  height: 68px;
  z-index: 1;
}

.clinic__slider-for .slick-prev:before, .clinic__slider-for .slick-prev:before, .clinic__slider-for .slick-next:before, .clinic__slider-for .slick-next:before {
  display: none;
}

.clinic__slider-for .slick-prev {
  left: calc(50% - 480px);
  background: url(../images/prev.png);
  background-size: contain;
}

.clinic__slider-for .slick-next {
  right: calc(50% - 480px);
  background: url(../images/next.png);
  background-size: contain;
}

.clinic__slider-nav__wrapper {
  padding: 75px 0 85px;
  background-image: url(../images/clinic-intro-sm-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.clinic__slider-nav .slick-dots {
  bottom: -70px;
}

.clinic__slider-nav .slick-list {
  margin: 0 -15px;
}

.clinic__slider-nav .slick-slide > div {
  padding: 0 15px;
}

.clinic__slider .slick-prev, .clinic__slider .slick-next {
  top: calc(50% - 70px);
}

@media (max-width: 991px) {
  .clinic__slider-for .slick-slide > div {
    padding: 20px 40px 0;
  }
  .clinic__slider-for .slick-prev {
    left: 0;
  }
  .clinic__slider-for .slick-next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .clinic__slider-nav__wrapper {
    padding: 30px 0;
  }
  .clinic__slider-nav__wrapper .slick-slide > div {
    padding: 0 5px;
  }
  .clinic__slider-nav .slick-dots {
    bottom: -35px;
  }
}

@media (max-width: 575px) {
  .clinic__slider-for {
    margin-bottom: 0px;
  }
  .clinic__slider-for .slick-slide > div {
    padding: 20px 0px;
  }
  .clinic__slider-for .slick-prev, .clinic__slider-for .slick-next {
    width: 40px;
    height: 40px;
  }
  .clinic__slider-for .el__text {
    font-size: 18px;
    max-width: 72%;
    height: 60px;
    line-height: 55px;
    bottom: -45px;
  }
  .clinic__slider-for .el__excerpt {
    margin-top: 60px;
    font-size: 15px;
  }
}

.clinic__foreign {
  padding-top: 50px;
  margin-bottom: 80px;
}

.clinic__foreign .el__box {
  background-color: rgba(222, 182, 155, 0.13);
  border-radius: 25px;
  padding: 60px 88px 60px;
}

.clinic__foreign .el__item {
  margin-bottom: 20px;
}

.clinic__foreign .el__title {
  font-size: 33px;
  font-weight: 400;
  line-height: 57px;
  color: #504B46;
  text-align: center;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.clinic__foreign .el__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 320px;
  flex: 0 0 320px;
  max-width: 320px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.clinic__foreign .el__thumb img {
  border-radius: 20px;
}

.clinic__foreign .el__line {
  content: "";
  background-image: url(../images/clinic-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 9px;
  margin: 15px 0 30px;
  display: block;
}

@media (max-width: 991px) {
  .clinic__foreign .el__box {
    padding: 60px 44px;
  }
  .clinic__foreign .el__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .clinic__foreign .el__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .clinic__foreign .el__item {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 575px) {
  .clinic__foreign .el__box {
    padding: 50px 15px;
  }
  .clinic__foreign .el__title {
    font-size: 24px;
    line-height: 1.3;
  }
}

.clinic__intro2 {
  padding-bottom: 50px;
}

.clinic__intro2 .el__header {
  text-align: center;
  margin-bottom: 60px;
}

.clinic__intro2 .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.clinic__intro2 .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 15px;
  margin: 10px auto 0;
}

.clinic__intro2 .el__item {
  margin-bottom: 60px;
}

.clinic__intro2 .el__thumb {
  margin-bottom: 30px;
  position: relative;
}

.clinic__intro2 .el__thumb::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: url(../images/clinic-intro2-wrap.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.clinic__intro2 .el__thumb .dnfix__thumb {
  border-radius: 30px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .clinic__intro2 .el__thumb .dnfix__thumb {
    border-radius: 20px;
  }
}

.clinic__intro2 .el__title {
  font-size: 25px;
  font-weight: 400;
  line-height: 43px;
  color: #504B46;
  margin-bottom: 0;
  text-align: center;
}

.clinic__intro2 .el__excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: #504B46;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .clinic__intro2 .row.-x60 {
    --bs-gutter-x: 30px;
  }
  .clinic__intro2 .el__item {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .clinic__intro2 .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
}

.clinic__3box {
  margin-bottom: 130px;
}

.clinic__3box .el__header {
  text-align: center;
}

.clinic__3box .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 33px;
  line-height: 57px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.clinic__3box .el__box {
  background-color: rgba(222, 182, 155, 0.13);
  border-radius: 25px;
  padding: 60px 88px 30px;
}

.clinic__3box .el__item {
  margin-bottom: 30px;
}

.clinic__3box .el__title {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.8;
  color: #B7E8E5;
  margin-bottom: 10px;
  text-align: center;
}

.clinic__3box .el__excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: #504B46;
  margin-bottom: 0;
}

.clinic__3box .el__thumb {
  margin-bottom: 20px;
}

.clinic__3box .el__thumb img {
  border-radius: 20px;
}

.clinic__3box .el__line {
  content: "";
  background-image: url(../images/clinic-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 9px;
  margin: 15px 0 40px;
  display: block;
}

@media (max-width: 991px) {
  .clinic__3box .el__box {
    padding: 60px 44px;
  }
}

@media (max-width: 575px) {
  .clinic__3box .el__box {
    padding: 50px 15px;
  }
  .clinic__3box .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
}

.service__nav {
  padding-top: 70px;
  margin-bottom: 70px;
}

.service__nav .el__header {
  text-align: center;
  margin-bottom: 70px;
}

.service__nav .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.service__nav .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 15px;
  margin: 10px auto 0;
}

.service__nav .el__menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.service__nav .el__menu a {
  position: relative;
  padding: 10px 30px 10px 10px;
  color: #504B46;
  font-size: 18px;
  line-height: 22px;
  display: block;
}

.service__nav .el__menu > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.service__nav .el__menu > li a:hover {
  color: #B7E8E5;
}

.service__nav .el__menu > li a::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../images/arow-down.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 15px;
  right: .75rem;
}

.service__nav .el__menu > li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../images/menu-border-bottom.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.service__nav .sub-menu {
  position: absolute;
  top: 100%;
  left: .75rem;
  width: calc(100% - 1.5rem);
  opacity: 0;
  background: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

.service__nav .sub-menu a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../images/menu-border-bottom.png);
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.service__nav .sub-menu a:hover {
  background-color: #B7E8E5;
  color: #fff;
}

.service__nav .sub-menu.show {
  visibility: visible;
  transform: rotateY(0);
  -webkit-transform: rotateY(0);
  opacity: 1;
  z-index: 99;
}

@media (max-width: 991px) {
  .service__nav .el__menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media (max-width: 767px) {
  .service__nav {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .service__nav .el__menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .service__nav .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
  .service__nav .el__menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.service__caries {
  padding-top: 50px;
  margin-bottom: 30px;
}

.service__caries .el__item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.service__caries .el__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 49px;
  color: #504B46;
  margin-bottom: 0;
}

.service__caries .el__badge {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 1.8;
  padding: 4px 15px;
  margin-left: 30px;
  background-image: url(../images/service-badge-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin-bottom: 5px;
}

.service__caries .el__badge::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -27px;
  width: 43px;
  height: 43px;
  background-image: url(../images/service-badge-2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.service__caries .el__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 390px;
  flex: 0 0 390px;
  max-width: 390px;
  margin-right: 40px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 20px;
}

.service__caries .el__thumb::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background-image: url(../images/service-border-wrap.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.service__caries .el__thumb .dnfix__thumb {
  border-radius: 30px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .service__caries .el__thumb .dnfix__thumb {
    border-radius: 20px;
  }
}

.service__caries .el__excerpt {
  margin-bottom: 30px;
}

.service__caries .el__line {
  content: "";
  background-image: url(../images/service__caries-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 15px;
  display: block;
  margin-bottom: 50px;
}

.service__caries .el__list {
  list-style: none;
  font-size: 23px;
  line-height: 43px;
  margin-bottom: 20px;
}

.service__caries .el__list li::before {
  content: "\2022";
  color: #B7E8E5;
  font-weight: bold;
  display: inline-block;
  font-size: 58px;
  line-height: 20px;
  margin-right: 5px;
  position: relative;
  top: 10px;
}

.service__caries .el__button__wrap {
  text-align: right;
}

@media (max-width: 991px) {
  .service__caries .el__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .service__caries {
    padding-top: 30px;
  }
  .service__caries .el__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 15px 30px;
  }
  .service__caries .el__badge {
    font-size: 16px;
    line-height: 1.8;
    padding: 2px 10px;
    margin-left: 0px;
  }
  .service__caries .el__badge::after {
    top: 7px;
    right: -15px;
    width: 30px;
    height: 32px;
  }
  .service__caries .el__excerpt {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 575px) {
  .service__caries .el__list {
    font-size: 18px;
    line-height: normal;
  }
  .service__caries .el__title {
    font-size: 25px;
    line-height: normal;
  }
}

.service__cariesbox {
  margin-top: 30px;
  padding-bottom: 20px;
}

.service__cariesbox .el2__box {
  background-image: url(../images/service__cariesbox-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 40px 50px 10px;
}

.service__cariesbox .el2__title {
  font-size: 21px;
  font-weight: 400;
  line-height: 43px;
  color: #504B46;
  text-align: center;
  margin-bottom: 0;
}

.service__cariesbox .el2__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  max-width: 250px;
  margin-left: 30px;
  margin-bottom: 30px;
}

.service__cariesbox .el2__thumb .dnfix__thumb {
  border-radius: 20px;
  overflow: hidden;
}

.service__cariesbox .el2__excerpt {
  margin-bottom: 30px;
}

.service__cariesbox .el2__line {
  content: "";
  background-image: url(../images/clinic-line.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  height: 9px;
  margin: 10px 0 30px;
  display: block;
}

@media (max-width: 991px) {
  .service__cariesbox .el2__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .service__cariesbox .el2__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .service__cariesbox .el2__excerpt {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 575px) {
  .service__cariesbox .el2__box {
    padding: 40px 30px 10px;
  }
  .service__cariesbox .el2__title {
    font-size: 22px;
    line-height: normal;
  }
}

.banner-btn.-st2 {
  padding: 100px 0;
}

.banner-btn.-st2 .el__header {
  text-align: center;
  margin-bottom: 60px;
}

.banner-btn.-st2 .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.banner-btn.-st2 .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 15px;
  margin: 10px auto 0;
}

.banner-btn.-st2 .el__header__excerpt {
  margin-bottom: 80px;
  text-align: center;
}

@media (max-width: 767px) {
  .banner-btn.-st2 .el__header__excerpt {
    margin-bottom: 30px;
    text-align: left;
  }
}

@media (max-width: 575px) {
  .banner-btn.-st2 .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
}

.staff__intro {
  padding: 160px 0 170px;
  background-image: url(../images/staff__intro-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.staff__intro .el__header {
  text-align: center;
  margin-bottom: 60px;
}

.staff__intro .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 33px;
  line-height: 57px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.staff__intro .el__header__excerpt {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .staff__intro {
    padding: 80px 0 60px;
  }
  .staff__intro .el__header {
    margin-bottom: 40px;
  }
  .staff__intro .el__header__title {
    font-size: 30px;
  }
  .staff__intro .el__header__excerpt {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .staff__intro .el__header__title {
    font-size: 25px;
    line-height: 1.4;
  }
  .staff__intro .el__header__excerpt {
    line-height: 1.6;
    text-align: left;
  }
}

.staff__director {
  margin-top: 140px;
  padding-top: 20px;
  padding-bottom: 30px;
  background-image: url(../images/staff__director-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.staff__director .el__header {
  text-align: center;
  margin-bottom: 80px;
}

.staff__director .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.staff__director .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 15px;
  margin: 10px auto 0;
}

.staff__director .el__header__excerpt {
  margin-bottom: 30px;
}

.staff__director .el__item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.staff__director .el__item--left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
  max-width: 360px;
  margin-right: 70px;
  margin-bottom: 30px;
}

.staff__director .el__user__position {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 15px;
}

.staff__director .el__user ruby {
  font-size: 26px;
  line-height: normal;
  margin-bottom: 30px;
}

.staff__director .el__user rt {
  font-size: 14px;
  line-height: normal;
}

.staff__director .el__title {
  font-size: 29px;
  font-weight: 400;
  line-height: 50px;
  color: #504B46;
  margin-bottom: 40px;
  font-family: var(--font-family-02);
}

.staff__director .el__thumb {
  position: relative;
  top: 30px;
  margin-bottom: 60px;
}

.staff__director .el__thumb .dnfix__thumb {
  padding-top: 121%;
}

.staff__director .el__thumb::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: url(../images/service__director-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.staff__director .el__excerpt {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .staff__director .el__item--left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
    max-width: 330px;
    margin-right: 30px;
  }
  .staff__director .el__box {
    padding: 0px 15px;
  }
  .staff__director .el__title {
    font-size: 25px;
    line-height: normal;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .staff__director {
    margin-top: 0;
  }
  .staff__director .el__header {
    margin-bottom: 60px;
  }
  .staff__director .el__header__title {
    font-size: 28px;
    line-height: 1.8;
  }
  .staff__director .el__item--left {
    margin: 0 auto 30px;
  }
  .staff__director .el__title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .staff__director {
    padding-bottom: 0;
  }
  .staff__director .el__title {
    text-align: center;
  }
  .staff__director .el__excerpt {
    line-height: 1.6;
  }
}

.staff__profile {
  padding: 40px 40px 80px;
}

.staff__profile .col--left {
  position: relative;
}

.staff__profile .col--left:after {
  content: "";
  /* background-image: url(../images/border-vertical-primary.png); */
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  width: 4px;
  height: calc(100% - 20px);
  position: absolute;
  top: 20px;
  right: 0;
}

.staff__profile .el__box {
  position: relative;
  background-image: url(../images/service__profile-border.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 50% 100%;
  padding: 30px;
}

.staff__profile .el__box:before {
  content: "";
  background-image: url(../images/ttl_profile.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 267px;
  height: 87px;
  position: absolute;
  top: -40px;
  left: -50px;
}

.staff__profile .el__item {
  padding: 0 15px;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.staff__profile .el__item ul {
  margin-bottom: 0;
}

.staff__profile .el__item ul li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.staff__profile .el__item ul li span {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  max-width: 60px;
  margin-right: 10px;
}

.staff__profile .el__title {
  background-image: url(../images/service__profile-title-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 20px;
  color: #504B46;
  margin: auto;
  font-family: var(--font-family-02);
  margin-bottom: 15px;
}

.staff__profile .el__title.-st2 {
  background-image: url(../images/service__profile-title-2.png);
}

@media (max-width: 767px) {
  .staff__profile .col--left:after {
    content: "";
    background-image: url(../images/border-primary.png);
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 4px;
    position: relative;
    top: 0;
    display: block;
    margin-bottom: 30px;
  }
  .staff__profile .el__box:before {
    top: -30px;
    width: 230px;
    height: 76px;
  }
}

@media (max-width: 575px) {
  .staff__profile {
    padding: 40px 0 0px;
  }
  .staff__profile .el__box {
    background: #fff;
    padding: 30px 15px;
  }
  .staff__profile .el__box:before {
    width: 200px;
    top: -40px;
    left: -10px;
  }
}

.staff__doctor {
  padding-top: 130px;
  padding-bottom: 100px;
}

.staff__doctor .el__header {
  text-align: center;
  margin-bottom: 90px;
}

.staff__doctor .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.staff__doctor .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 15px;
  margin: 10px auto 0;
}

.staff__doctor .el__header__excerpt {
  margin-bottom: 30px;
}

.staff__doctor .el__item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.staff__doctor .el__item--left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 292px;
  flex: 0 0 292px;
  max-width: 292px;
  margin-right: 50px;
  margin-bottom: 30px;
}

.staff__doctor .el__info {
  margin-bottom: 20px;
}

.staff__doctor .el__info__position {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin-right: 30px;
  margin-bottom: 0;
  display: inline-block;
}

.staff__doctor .el__info ruby {
  font-size: 26px;
}

.staff__doctor .el__info rt {
  font-size: 14px;
}

.staff__doctor .el__info__wrap {
  display: inline-block;
}

.staff__doctor .el__info__name {
  font-size: 14px;
  line-height: normal;
}

.staff__doctor .el__info__address {
  font-size: 26px;
}

.staff__doctor .el__title {
  font-size: 26px;
  font-weight: 400;
  line-height: 45px;
  color: #504B46;
  margin-bottom: 20px;
  font-family: var(--font-family-02);
}

.staff__doctor .el__thumb {
  position: relative;
  margin-bottom: 30px;
}

.staff__doctor .el__thumb .dnfix__thumb {
  padding-top: 100%;
  z-index: 1;
  max-width: 275px;
}

.staff__doctor .el__thumb::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-image: url(../images/service__doctor-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 1;
}

.staff__doctor .el__excerpt {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.staff__doctor .el__line {
  position: relative;
  width: 100%;
  height: 13px;
  margin: 5px 0;
  background-image: url(../images/line.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
}

.staff__doctor .el__line::before, .staff__doctor .el__line::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 13px;
  height: 13px;
  background-image: url(../images/dot.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.staff__doctor .el__line::after {
  left: auto;
  right: -1px;
}

.staff__doctor .el__ul {
  margin-bottom: 0;
}

.staff__doctor .el__li {
  position: relative;
}

.staff__doctor .el__li + .el__li::before {
  content: "";
  background-image: url(../images/access__trans-border.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: cover;
  display: block;
  width: 100%;
  height: 3px;
}

.staff__doctor .el__li__wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  padding: 10px 10px;
}

.staff__doctor .el__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  max-width: 100px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-family-02);
  margin-right: 30px;
  margin-bottom: 0;
  background-image: url(../images/service__profile-title-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.staff__doctor .el__icon.-st2 {
  background-image: url(../images/service__profile-title-2.png);
}

.staff__doctor .el__icon img {
  max-width: 54px;
}

.staff__doctor .el__sub {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.staff__doctor .el__sub li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.staff__doctor .el__sub li span {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  max-width: 60px;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .staff__doctor {
    padding-top: 50px;
  }
  .staff__doctor .el__header {
    margin-bottom: 50px;
  }
  .staff__doctor .el__box {
    padding: 0 15px;
  }
  .staff__doctor .el__item--left {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .staff__doctor {
    padding-top: 30px;
  }
  .staff__doctor .el__item--left {
    margin: 0 auto 0;
  }
  .staff__doctor .el__info {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .staff__doctor .el__header__title {
    font-size: 28px;
    line-height: normal;
  }
  .staff__doctor .el__title {
    font-size: 22px;
    line-height: normal;
  }
}

@media (max-width: 479px) {
  .staff__doctor .el__icon {
    margin: auto !important;
  }
  .staff__doctor .el__li__wrap {
    display: block;
  }
}

.staff__staff {
  padding-bottom: 15px;
}

.staff__staff .el__header {
  text-align: center;
  margin-bottom: 60px;
}

.staff__staff .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.staff__staff .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 15px;
  margin: 10px auto 0;
}

.staff__staff .el__header__excerpt {
  margin-bottom: 30px;
}

.staff__staff .el__item {
  margin-bottom: 30px;
}

.staff__staff .el__thumb {
  position: relative;
  width: 240px;
  margin: 0 auto 30px;
}

.staff__staff .el__thumb .dnfix__thumb {
  padding-top: 100%;
  border-radius: 50%;
}

.staff__staff .el__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 100%;
  height: 100%;
  background-image: url(../images/staff-border-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.staff__staff .el__thumb.-st2::after {
  background-image: url(../images/staff-border-2.png);
}

.staff__staff .el__info {
  margin-bottom: 20px;
}

.staff__staff .el__info__position {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}

.staff__staff .el__info ruby {
  font-size: 26px;
}

.staff__staff .el__info rt {
  font-size: 14px;
}

.staff__staff .el__sub {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
}

.staff__staff .el__line {
  position: relative;
  width: 100%;
  height: 4px;
  margin: 5px 0;
  background-image: url(../images/line-sm.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 100% 100%;
}

.staff__staff .el__line::before, .staff__staff .el__line::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0px;
  width: 13px;
  height: 13px;
  background-image: url(../images/dot.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.staff__staff .el__line::after {
  left: auto;
  right: -1px;
}

.staff__staff .el__excerpt {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

.staff__staff .el__excerpt h4 {
  font-weight: 400;
  margin-bottom: 0;
}

.staff__staff .el__excerpt ul {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .staff__staff .el__header__title {
    font-size: 25px;
    line-height: normal;
  }
  .staff__staff .el__excerpt h4 {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-family-02);
    margin-right: 30px;
    margin-bottom: 0;
    background-image: url(../images/service__profile-title-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: auto;
  }
  .staff__staff .el__excerpt h4.-st2 {
    background-image: url(../images/service__profile-title-2.png);
  }
}

.staff__about {
  padding: 140px 0 150px;
  background-image: url(../images/staff__about-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin-bottom: 80px;
}

.staff__about .el__header {
  text-align: center;
  margin-bottom: 50px;
}

.staff__about .el__header__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.staff__about .el__thumb {
  position: relative;
  margin: 0 12px;
}

.staff__about .el__thumb::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  background-image: url(../images/staff__about-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

@media (max-width: 992px) {
  .staff__about {
    padding: 90px 0 100px;
  }
}

@media (max-width: 767px) {
  .staff__about {
    padding: 40px 0 50px;
  }
  .staff__about .el__header {
    text-align: left;
  }
}

/* ************************
 title
 ************************ */
.error {
  padding: 50px 0;
}

.error .el__header {
  text-align: center;
  margin-bottom: 50px;
}

.error .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.error .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  height: 15px;
}

.error .error-text {
  font-size: 22px;
  line-height: 1.8;
  text-align: center;
}

.error .error-text, .error .error-btn {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .error {
    padding: 30px 0;
  }
  .error .el__header__title {
    font-size: 22px;
    line-height: normal;
  }
  .error .error-text {
    font-size: 18px;
    text-align: left;
  }
}

#p-pattern.page .service__nav .el__menu a {
  min-height: 64px;
}

.page__intro {
  padding-top: 50px;
  margin-bottom: 180px;
  font-size: 20px;
}

.page__intro .el__header {
  text-align: center;
  margin-bottom: 60px;
}

.page__intro .el__header__title {
  background-image: url(../images/page/page-bg-1-green-orange.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  display: block;
  width: 100%;
  max-width: 675px;
  height: 123px;
  padding-top: 40px;
  margin: auto;
  font-size: 40px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.page__intro .el__box small {
  display: block;
  font-size: 16px;
}

.page__intro .el__item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.page__intro .el__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 478px;
  flex: 0 0 478px;
  max-width: 478px;
  margin-right: 40px;
  margin-bottom: 30px;
  position: relative;
}

.page__intro .el__thumb::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background-image: url(../images/page/page-border-wrap-1.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.page__intro .el__excerpt ul {
  margin: 30px 0;
}

.page__intro .el__excerpt ul li {
  margin-top: 10px;
  padding-left: 30px;
  background: url(../images/page/page-ico-1-green-orange.png) no-repeat left 7px;
}

.page__intro .el__thumb .dnfix__thumb {
  border-radius: 30px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .page__intro .el__thumb .dnfix__thumb {
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .page__intro .el__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .page__intro {
    padding-top: 30px;
  }
  .page__intro .el__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 15px 30px;
  }
  .page__intro .el__excerpt {
    font-size: 15px;
    line-height: 1.8;
  }
  .page__intro .el__excerpt ul li {
    background: url(../images/page/page-ico-1-green-orange.png) no-repeat left 3px;
  }
  .page__intro .el__box small {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .page__intro {
    margin-bottom: 60px;
  }
  .page__intro .el__list {
    font-size: 18px;
    line-height: normal;
  }
  .page__intro .el__title {
    font-size: 25px;
    line-height: normal;
  }
  .page__intro .el__header__title {
    font-size: 30px;
  }
}

.page__content {
  padding-top: 50px;
  margin-bottom: 180px;
}

.page__content .el__header {
  text-align: center;
  margin-bottom: 60px;
}

.page__content .el__header__title {
  position: relative;
  display: inline-block;
  font-size: 38px;
  line-height: 66px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-family-02);
}

.page__content .el__header__title::after {
  content: "";
  background-image: url(../images/access-header-line-green-orange.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 15px;
  margin: 10px auto 0;
}

.page__content .el__item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.page__content .el__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 49px;
  color: #504b46;
  margin-bottom: 0;
}

.page__content .el__number {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 124px;
  height: auto;
  background-image: url(../images/access__info-number-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

#p-content-3.page__content .el__number {
  background: none;
}

#p-content-2.page__content .el__title {
  margin-bottom: 30px;
  padding: 5px 20px;
  background: url(../images/page/page-line-2-green-orange.png) no-repeat;
  background-size: 100% 100%;
}

#p-content-3.page__content .el__title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  background: url(../images/page/page-line-3-green-orange.png) no-repeat left bottom;
  background-size: 100%;
}

#p-content-3.page__content .el__title.yellow {
  background: url(../images/page/page-line-4-green-orange.png) no-repeat left bottom;
  background-size: 100%;
}

#p-content-5.page__content .el__title {
  margin-bottom: 20px;
  padding-left: 30px;
  background: url(../images/page/page-ico-2-green-orange.png) no-repeat left 16px;
}

#p-content-5.page__content .el__title.yellow {
  margin-bottom: 20px;
  padding-left: 30px;
  background: url(../images/page/page-ico-3-green-orange.png) no-repeat left 16px;
}

.page__content .el__line {
  content: "";
  background-image: url(../images/page/page-line-1-green-orange.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 15px;
  display: block;
  margin-bottom: 30px;
}

.page__content .el__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 390px;
  flex: 0 0 390px;
  max-width: 390px;
  margin-left: 40px;
  margin-bottom: 30px;
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#p-content-2.page__content .el__thumb, #p-content-3.page__content .el__thumb, #p-content-5.page__content .el__thumb {
  margin-left: 0;
  margin-right: 40px;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.page__content .el__thumb::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background-image: url(../images/page/page-border-wrap-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

#p-content-2.page__content .el__thumb::after {
  background-image: url(../images/page/page-border-wrap-3-green-orange.png);
}

#p-content-5.page__content .el__thumb::after {
  background-image: url(../images/page/page-border-wrap-5-green-orange.png);
}

#p-content-5.page__content .el__thumb.yellow::after {
  background-image: url(../images/page/page-border-wrap-6-green-orange.png);
}

#p-content-6.page__content .el__thumb::after {
  background-image: url(../images/page/page-border-wrap-7.png);
}

#p-content-7.page__content .el__thumb::after, #p-content-8.page__content .el__thumb::after {
  background-image: url(../images/page/page-border-wrap-8.png);
}

#p-content-7.page__content .ellipse .el__thumb::after, #p-content-8.page__content .ellipse .el__thumb::after {
  background-image: url(../images/page/page-border-wrap-9-green-orange.png);
}

.page__content .el__thumb .dnfix__thumb {
  border-radius: 30px;
  overflow: hidden;
}

#p-content-3.page__content section {
  margin-bottom: 120px;
}

#p-content-3.page__content section:last-child {
  margin-bottom: 0;
}

#p-content-4.page__content table {
  width: 100%;
  border-collapse: collapse;
}

#p-content-4.page__content table th {
  background: #fef7e9;
  border-bottom: 1px dashed #b9b7b5;
  padding: 20px;
  width: 27%;
  font-size: 18px;
}

#p-content-4.page__content table th:first-child {
  width: 24%;
}

#p-content-4.page__content table tr:first-child td {
  border-bottom: 1px solid #b9b7b5;
  padding: 0 20px;
}

#p-content-4.page__content table tr:first-child td span {
  background: #8cd4cf;
  border-radius: 20px 20px 0 0;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 18px;
  height: 56px;
  line-height: 56px;
}

#p-content-4.page__content table tr:last-child th {
  border-bottom: 1px solid #b9b7b5;
}

#p-content-4.page__content table td {
  background: #fff;
  border-bottom: 1px dashed #b9b7b5;
  padding: 20px;
}

#p-content-4.page__content table tr:last-child td {
  border-bottom: 1px solid #b9b7b5;
}

#p-content-4.page__content table td img {
  vertical-align: bottom;
}

#p-content-5.page__content section {
  margin-bottom: 120px;
}

#p-content-5.page__content section:last-child {
  margin-bottom: 0;
}

#p-content-6.page__content h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

#p-content-6.page__content .el__thumb {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

#p-content-6.page__content .el__title {
  font-size: 16px;
  line-height: 1.8;
}

#p-content-6.page__content .el__item {
  margin-bottom: 40px;
}

#p-content-7.page__content .el__box {
  margin-bottom: 100px;
}

#p-content-7.page__content .el__box:last-child {
  margin-bottom: 0;
}

#p-content-7.page__content .el__thumb {
  margin-left: 0;
}

#p-content-7.page__content .el__title {
  font-size: 16px;
  line-height: 1.8;
  background: url(../images/page/page-bg-2-green-orange.png);
  background-size: 100% 100%;
  padding: 30px 30px 30px 50px;
  margin-top: 25px;
  margin-left: -55px;
}

#p-content-7.page__content .ellipse .el__thumb {
  margin-left: 0;
}

#p-content-7.page__content .ellipse .el__title {
  padding: 30px 50px 30px 30px;
  margin-right: -55px;
  margin-left: 0;
}

#p-content-7.page__content .ellipse .dnfix__thumb img {
  -o-object-fit: fill;
  object-fit: fill;
}

#p-content-8.page__content .el__box {
  margin-bottom: 100px;
}

#p-content-8.page__content .el__box:last-child {
  margin-bottom: 0;
}

#p-content-8.page__content .el__thumb {
  margin-left: 0;
}

#p-content-8.page__content .el__title {
  font-size: 16px;
  line-height: 1.8;
  background: url(../images/page/page-bg-3-green-orange.png);
  background-size: 100% 100%;
  padding: 30px 30px 30px 50px;
  margin-top: 25px;
  margin-left: -55px;
}

#p-content-8.page__content .ellipse .el__thumb {
  margin-left: 0;
}

#p-content-8.page__content .ellipse .el__title {
  padding: 30px 50px 30px 30px;
  margin-right: -55px;
  margin-left: 0;
}

#p-content-8.page__content .ellipse .dnfix__thumb img {
  -o-object-fit: fill;
  object-fit: fill;
}

#p-content-9.page__content .el__header {
  margin-bottom: 30px;
}

#p-content-9.page__content .el__box {
  background: url(../images/page/page-border-1-green-orange.png) no-repeat center top, url(../images/page/page-border-3-green-orange.png) no-repeat center bottom, url(../images/page/page-border-2-green-orange.png) repeat-y;
  background-size: 100% auto, 100% auto, 100% 100%;
  padding: 0 60px 60px;
}

#p-content-9.page__content .el__box h2 {
  padding: 0 30px;
  background: #fff;
  margin-top: -20px;
}

#p-content-9.page__content .el__box h2::after {
  display: none;
}

#p-content-9.page__content .el__box p {
  margin-bottom: 40px;
}

#p-content-9.page__content .el__box ul {
  padding: 0 20px;
}

#p-content-9.page__content .el__box ul li {
  margin-top: 10px;
  padding-left: 30px;
  background: url(../images/page/page-ico-1-green-orange.png) no-repeat left 7px;
  font-size: 20px;
}

@media (max-width: 1180px) {
  #p-content-3.page__content .el__thumb {
    margin-left: 85px;
  }
}

@media (max-width: 991px) {
  /*
   *	.page__content .el__thumb {
   *		-webkit-box-flex: 0;
   *		-ms-flex: 0 0 200px;
   *		flex: 0 0 200px;
   *		max-width: 200px;
   *		margin-right: 15px;
   *	} */
  #p-content-3.page__content .el__thumb {
    margin-left: 25px;
  }
  .page__content .el__number {
    position: absolute;
    top: -40px;
    left: -20px;
    width: 80px;
    height: auto;
  }
  #p-content-7.page__content .el__thumb, #p-content-7.page__content .ellipse .el__thumb {
    margin-right: 0;
    max-width: none;
  }
  #p-content-7.page__content .el__title {
    padding: 30px;
    margin-top: 0;
    margin-left: 0;
  }
  #p-content-7.page__content .ellipse .el__title {
    padding: 30px;
    margin-top: 0;
    margin-right: 0;
  }
  #p-content-8.page__content .el__thumb, #p-content-8.page__content .ellipse .el__thumb {
    margin-right: 0;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .page__content {
    padding-top: 30px;
  }
  .page__content .el__thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 15px 30px;
  }
  .page__content .el__thumb .dnfix__thumb {
    border-radius: 20px;
  }
  #p-content-2.page__content .el__thumb {
    margin-left: 15px;
    margin-right: 15px;
  }
  #p-content-3.page__content .el__thumb {
    margin: 0 15px 30px;
  }
  #p-content-5.page__content .el__thumb {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page__content .el__excerpt {
    font-size: 15px;
    line-height: 1.8;
  }
  #p-content-4.page__content .el__scroll {
    overflow-x: scroll;
  }
  #p-content-4.page__content table {
    min-width: 737px;
  }
  #p-caries-4.page__caries table th {
    padding: 10px;
    font-size: 16px;
  }
  #p-content-4.page__content table tr:first-child td {
    padding: 0 10px;
  }
  #p-content-4.page__content table tr:first-child td span {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }
  #p-content-4.page__content table td {
    padding: 10px;
    font-size: 14px;
  }
  #p-content-4.page__content table th:first-child {
    width: 33%;
  }
  #p-content-8.page__content .el__title {
    padding: 30px;
    margin-top: 0;
    margin-left: 0;
  }
  #p-content-8.page__content .ellipse .el__title {
    padding: 30px;
    margin-top: 0;
    margin-right: 0;
  }
  #p-content-9.page__content .el__box ul li {
    font-size: 15px;
    line-height: 1.8;
    background-position: left 3px;
  }
}

@media (max-width: 575px) {
  .page__content {
    margin-bottom: 80px;
  }
  .page__content .el__list {
    font-size: 18px;
    line-height: normal;
  }
  .page__content .el__title {
    font-size: 25px;
    line-height: normal;
  }
  .page__content .el__header__title {
    font-size: 30px;
  }
  #p-content-5.page__content .el__title {
    background: url(../images/page/page-ico-2-blue-green.png) no-repeat left 9px;
  }
  #p-content-5.page__content .el__title.yellow {
    background: url(../images/page/page-ico-3-blue-green.png) no-repeat left 9px;
  }
  #p-content-9.page__content .el__box {
    padding: 0 30px 30px;
  }
  #p-content-9.page__content .el__box ul {
    padding: 0;
  }
}

/* ------------------------------------------------------------
 * ページネーション
 * ------------------------------------------------------------ */
.m-blog_content {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1024px) {
  .m-blog_content {
    display: block;
  }
}

.m-blog_main {
  -ms-flex-preferred-size: calc(100% - 330px);
      flex-basis: calc(100% - 330px);
}

.m-blog_main .m-blog_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.m-blog_main .m-blog_category span {
  display: block;
  border-radius: 5px;
  padding: 4px 15px;
  color: #fff;
  background-color: #B7E8E5;
}

.m-blog_main .m-blog_date {
  margin-left: 10px;
  color: #B7E8E5;
}

.m-blog_main .m-blog_article article {
  margin-top: 60px;
}

.m-blog_main .m-blog_article article a {
  color: #504B46;
}

.m-blog_main .m-blog_article article a:hover .m-blog_title, .m-blog_main .m-blog_article article a:hover .m-blog_text {
  text-decoration: underline;
}

.m-blog_main .m-blog_title {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .m-blog_main .m-blog_title {
    font-size: 1.0rem;
  }
}

@media (max-width: 768px) {
  .m-blog_main .m-blog_text {
    display: none;
  }
}

.m-blog_main .m-blog_frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.m-blog_main .m-blog_pic {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  position: relative;
  z-index: 0;
  padding: 5px;
}

@media (max-width: 768px) {
  .m-blog_main .m-blog_pic {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
  }
}

.m-blog_main .m-blog_pic.is-thumnail img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}

.m-blog_main .m-blog_pic.is-logo {
  background-color: rgba(183, 232, 229, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  height: 120px;
}

.m-blog_main .m-blog_pic.is-logo img {
  max-height: 110px;
}

.m-blog_main .m-blog_pic::before {
  content: "";
  background-image: url(../images/featured-border-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.m-blog_main .m-blog_cont {
  -ms-flex-preferred-size: calc(100% - 230px);
      flex-basis: calc(100% - 230px);
}

@media (max-width: 768px) {
  .m-blog_main .m-blog_cont {
    -ms-flex-preferred-size: calc(100% - 160px);
        flex-basis: calc(100% - 160px);
  }
}

.m-blog_main .m-blog_archiveTtl {
  font-family: var(--font-family-02);
  text-align: center;
}

.m-blog_main .m-blog_archiveTtl span::after {
  margin-left: 20px;
  font-family: var(--font-family-01);
  color: #B7E8E5;
}

.m-blog_main .m-blog_archiveTtl.is-category span::after {
  content: 'category';
}

.m-blog_main .m-blog_archiveTtl.is-archive span::after {
  content: 'archive';
}

.m-blog_navi {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
}

@media (max-width: 1024px) {
  .m-blog_navi {
    margin-top: 60px;
  }
}

.m-blog_navi .m-blog_naviTtl {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-family-02);
  text-align: center;
  padding-bottom: 20px;
  background-image: url(../images/access-header-line.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 15px;
}

.m-blog_navi .m-blog_naviList {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.m-blog_navi .m-blog_naviList li {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.m-blog_navi .m-blog_naviList li a {
  display: block;
  padding: 10px;
  color: #504B46;
  border-bottom: 1px dashed #B7E8E5;
}

.m-blog_navi .m-blog_naviList li a:hover {
  color: #B7E8E5;
}

.m-blog_catch {
  text-align: center;
}

/* ---------------------------------------------------------
 *	記事
 *---------------------------------------------------------- */
.m-blog_body {
  margin: 6px auto 0;
  font-size: 1.0rem;
}

.m-blog_body p, .m-blog_body div, .m-blog_body table, .m-blog_body img, .m-blog_body ul, .m-blog_body ol {
  margin-bottom: 30px;
}

.m-blog_body table {
  border-top: 1px solid #504B46;
  border-left: 1px solid #504B46;
}

.m-blog_body table th {
  background-color: #adadad;
}

.m-blog_body table td, .m-blog_body table th {
  font-size: 1.2rem;
  padding: 5px 10px;
  border-bottom: 1px solid #504B46;
  border-right: 1px solid #504B46;
}

.m-blog_body h1, .m-blog_body h2, .m-blog_body h3, .m-blog_body h4, .m-blog_body h5, .m-blog_body h6 {
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.m-blog_body h1 {
  font-size: 2.0rem;
  padding-bottom: 20px;
  background-image: url(../images/service__caries-line.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  width: 100%;
}

.m-blog_body h2 {
  font-size: 1.8rem;
  color: #504B46;
  padding-bottom: 20px;
  background-image: url(../images/service__caries-line.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  width: 100%;
}

.m-blog_body h3 {
  font-size: 1.6rem;
  color: #504B46;
  padding-bottom: 10px;
  position: relative;
}

.m-blog_body h3::after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../images/menu-border-bottom.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.m-blog_body h4 {
  color: #504B46;
  font-size: 1.4rem;
  padding-bottom: 10px;
  position: relative;
}

.m-blog_body h4::after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../images/menu-border-bottom.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.m-blog_body h5 {
  color: #504B46;
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 1px dashed #504B46;
}

.m-blog_body h6 {
  color: #504B46;
  font-size: 1.0rem;
  padding-bottom: 10px;
  border-bottom: 1px dashed #504B46;
}

.m-blog_body a {
  text-decoration: underline;
  color: #0070c9;
}

.m-blog_body a:hover {
  text-decoration: none;
}

.m-blog_body .aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.m-blog_body .alignleft {
  display: block;
}

.m-blog_body .alignright {
  margin-left: auto;
  display: block;
}

.m-blog_body ul li {
  list-style-type: disc;
  list-style-position: inside;
}

.m-blog_body ol {
  margin-left: 0;
}

.m-blog_body ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

.m-blog_body .googlemap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  height: 0;
  overflow: hidden;
  padding-bottom: 45.75%;
  position: relative;
}

.m-blog_body .googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.m-blog_body .youtube {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  padding-top: 45.75%;
}

.m-blog_body .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 1024px) {
  .m-blog_body .googlemap {
    padding-top: 50%;
  }
  .m-blog_body .youtube {
    padding-top: 56.25%;
  }
}

@media (max-width: 768px) {
  .m-blog_body {
    margin: 6px auto 0;
    overflow: hidden;
  }
  .m-blog_body h1, .m-blog_body h2, .m-blog_body h3, .m-blog_body h4, .m-blog_body h5, .m-blog_body h6 {
    margin-bottom: 2rem;
  }
  .m-blog_body h1 {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }
  .m-blog_body h1::before {
    width: 100px;
  }
  .m-blog_body h2 {
    font-size: 1.5rem;
  }
  .m-blog_body h3 {
    font-size: 1.4rem;
  }
  .m-blog_body h4 {
    font-size: 1.2rem;
  }
  .m-blog_body h5 {
    font-size: 1.1rem;
  }
  .m-blog_body h6 {
    font-size: 1rem;
  }
}

/* ------------------------------------------------------------
 * ページネーション
 * ------------------------------------------------------------ */
.m-pagination {
  margin-top: 15px;
}

.m-pagination_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.m-pagination_list ul {
  margin: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.m-pagination_list a, .m-pagination_list .btn {
  cursor: pointer;
  margin: 0 3px;
  display: block;
  padding: 11px 15px;
  color: #B7E8E5;
  border: 1px solid #B7E8E5;
  border-radius: 2em;
  font-size: 1.0rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  line-height: 1;
}

.m-pagination_list a.is-hover, .m-pagination_list a:hover, .m-pagination_list a.is-active, .m-pagination_list .btn.is-hover, .m-pagination_list .btn:hover, .m-pagination_list .btn.is-active {
  background-color: #B7E8E5;
  color: #fff;
}

.m-pagination_list span.is-pageCount {
  color: #B7E8E5;
  display: block;
  padding: 3px 10px;
  font-size: 1.8rem;
  letter-spacing: 5px;
  display: none;
}

.m-pagination_list .is-disabled {
  opacity: .3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .m-pagination {
    margin-top: 15px;
    padding: 10px;
  }
  .m-pagination_list {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .m-pagination_list > ul {
    display: none;
  }
  .m-pagination_list a, .m-pagination_list .btn {
    padding: 8px 8px;
    font-size: 0.8rem;
  }
  .m-pagination_list span.is-pageCount {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: block;
    text-align: center;
  }
}

.page-link {
  color: #B7E8E5;
  border: 1px solid #B7E8E5;
  border-radius: 10px;
  width: 35px;
  height: 35px;
}

.page-item.active .page-link {
  background-color: #B7E8E5;
}

/* ------------------------------------------------------------
 * ページネーション ※記事詳細
 * ------------------------------------------------------------ */
.m-pager {
  max-width: 1200px;
  margin: 15px auto 0;
}

.m-pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.m-pager_list li span {
  font-size: 1.2rem;
}

.m-pager_list li.is-disable {
  visibility: hidden;
}

.m-pager_item a {
  display: inline-block;
  text-align: center;
  min-width: 220px;
  padding: 15px 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 10px;
}

.m-pager_item.is-prev a, .m-pager_item.is-next a {
  background-color: #B7E8E5;
  color: #fff;
}

.m-pager_item.is-prev a.is-hover, .m-pager_item.is-prev a:hover, .m-pager_item.is-next a.is-hover, .m-pager_item.is-next a:hover {
  background-color: rgba(183, 232, 229, 0.75);
}

.m-pager_item.is-index a {
  border: 1px solid #B7E8E5;
  color: #B7E8E5;
}

.m-pager_item.is-index a.is-hover, .m-pager_item.is-index a:hover {
  background-color: #B7E8E5;
  color: #fff;
}

@media (max-width: 1024px) {
  .m-pager {
    padding: 0 9px 6px;
    margin-left: -9px;
    margin-right: -9px;
  }
}

@media (max-width: 768px) {
  .m-pager {
    margin-top: 15px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 15px 6px;
  }
  .m-pager_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .m-pager_list li span {
    font-size: 1.0rem;
  }
  .m-pager_item a {
    padding: 10px 10px;
    border-radius: 5px;
    min-width: auto;
  }
}

/* 追加css */
.home-clinic .el__text {
  font-size: 16px;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .home-clinic .el__box .el__item .el__text {
    font-size: 14px;
  }
}

#p-ortho .el__box .el__menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-top: calc(var(--bs-gutter-y)* -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
  justify-content: center;
  padding: 4em 0 0;
}

#p-ortho .el__box .menu-item.has_under {
  flex: 0 0 23%;
  max-width: 23%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.staff_padding {
  padding: 0 !important;
}

._border_r {
  border-radius: 30px;
}

.ortho_button {
  height: 82px !important;
  line-height: 1.5 !important;
}

.top_news_area {
  justify-content: center;
}

.ortho_margin_02 {
  margin-bottom: 0px !important;
}

.ortho_margin_03 {
  margin-bottom: 90px !important;
}

.ortho_text_b {
  font-weight: bold;
  font-size: 19px;
}

.is-tar {
  text-align: right;
  padding: 0 0 2em;
}

@media screen and (max-width: 991px) {
  #p-ortho .el__box .el__menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (max-width: 767px) {
  #p-ortho .el__box .el__menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .ortho_text {
    font-size: 23px !important;
    line-height: 42px !important;
  }

  .ortho_text02 {
    font-size: 26px !important;
    line-height: 42px !important;
  }

  .ortho_margin {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 575px) {
  #p-ortho .el__box .el__menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}



.text-right {
  text-align: right;
}
.text-right a.btn {
  text-align: center;
}
.access__box3 .el__item .el__thumb img {
  border-radius: 20px;
}
.text-bold {
  font-weight: 700;
  font-family: 'DNPShueiMGoStd-B';
}


#p-ortho .el__menu.service__nav .menu-item .btn-primary {
  min-width: 220px;
  height: 50px !important;
  line-height: 2.3 !important;
}
#p-ortho #p-content-4.page__content.ortho-content-4 table th:first-child {
    width: 50%;
}
@media (max-width: 767px) {
  #p-ortho #p-content-4.page__content.ortho-content-4 table th:first-child {
    width: 33%;
  }
}

/* 追加css */
.top_reservation {
  text-decoration: underline;
}

@media (max-width: 767px) {
.facility_button {
  font-size: 0.9rem !important;
}
}


/* 250307院長・スタッフ紹介ページに文章追加 */
.staff__doctor__date {
	margin-top: 130px;
	font-size: 26px;
}
@media (max-width: 767px) {
	.staff__doctor__date {
		margin-top: 90px;
	}
    br.sp_none{
        display: none;
    }
}