.wrapper {
  max-width: 768px;
  margin: 0 auto;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floating-mobile {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}
img {
  image-rendering: auto;
}
img[loading=lazy] {
  transition: opacity 0.3s ease;
}
img[loading=lazy]:not([src]) {
  opacity: 0;
}
img[fetchpriority=high] {
  content-visibility: auto;
}

@media (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
  .cta_btn a {
    animation: floating-mobile 2.5s ease-in-out infinite;
  }
  .cta_btn a:active {
    animation-play-state: paused;
    transform: translateY(5px);
    transition: all 0.1s ease;
  }
}
.cta_block {
  background: url(../images/cta-bg.png) no-repeat center center;
  background-size: cover;
  padding: 20px 20px 30px;
}
.cta_block .plan_price {
  margin-top: -12%;
}
.cta_block .cta_btn {
  margin-top: 20px;
}
.cta_block .cta_btn a {
  display: inline-block;
  animation: floating 2s ease-in-out infinite;
}
.cta_block .cta_btn a:hover {
  animation-play-state: paused;
  transform: translateY(8px);
  filter: brightness(0.95);
  transition: all 0.3s ease;
}
.cta_block .cta_btn a:active {
  animation-play-state: paused;
  transform: translateY(10px);
  filter: brightness(0.9);
  transition: all 0.1s ease;
}
.cta_block .cta_btn a:focus {
  outline: none;
}

.fixed-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.fixed-bottom-nav:hover {
  filter: brightness(0.95);
  transition: all 0.3s ease;
}
.fixed-bottom-nav.nav-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.solution {
  overflow-x: hidden;
}
.solution .movie_block {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-height: 768px;
  max-width: 768px;
  margin: -5px auto 0;
}
.solution .movie_block video {
  pointer-events: none;
}
.solution .movie_block video::-webkit-media-controls {
  display: none !important;
}
.solution .movie_block video::-webkit-media-controls-panel {
  display: none !important;
}
.solution .movie_block video::-webkit-media-controls-play-button {
  display: none !important;
}
.solution .movie_block video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.solution .movie_block video::-moz-media-controls {
  display: none !important;
}
.solution .movie_block::before {
  content: "";
  background: url(../images/movie-frame.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.doctor .doctor_ttl {
  position: relative;
}
.doctor .doctor_ttl::before {
  content: "";
  background: url(../images/flower01.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -29%;
  left: 0;
  width: 21%;
  height: 88%;
}
.doctor .doctor_ttl::after {
  content: "";
  background: url(../images/flower02.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -35%;
  right: 0;
  width: 29%;
  height: 80%;
}

.case {
  background: url(../images/case-bg.png) no-repeat center center;
  background-size: cover;
  padding-bottom: 50px;
}

.slider-container {
  position: relative;
  margin: 0 auto;
  max-width: 768px;
  padding: 0 30px;
}

.case_slider .slick-track {
  display: flex;
  align-items: center;
}
.case_slider .slick-slide {
  outline: none;
}
.case_slider .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.case_slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}
.case_slider .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-indent: -9999px;
  outline: none;
}
.case_slider .slick-dots li button:hover {
  background-color: #3AA3EE;
}
.case_slider .slick-dots li.slick-active button {
  background-color: #3AA3EE;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  outline: none;
}
.slider-prev img,
.slider-next img {
  width: auto;
  height: auto;
  max-width: 90px;
  max-height: 90px;
}
.slider-prev:hover,
.slider-next:hover {
  opacity: 0.7;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}
@media (max-width: 768px) {
  .slider-prev img,
  .slider-next img {
    max-width: 40px;
    max-height: 40px;
  }
  .slider-container {
    padding: 0 10px;
  }
}
footer {
  padding: 30px 0;
  background: url(../images/copylight_bg.png);
  background-size: cover;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 1;
  display: block;
}
footer a {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 40px;
  display: block;
  color: #ffffff;
  transition: 0.3s;
  border-bottom: none;
}
footer a:hover {
  opacity: 0.7;
}
footer small {
  display: block;
}
footer small p {
  font-family: "Shippori Mincho", serif;
}/*# sourceMappingURL=style.css.map */