@charset "UTF-8";
.text-body {
  color: rgba(0, 0, 0, 0.65) !important;
}

.lighter {
  color: #888888;
}

.purple {
  color: #9EB1D2;
}

.pink {
  color: #F5949C;
}

.brown {
  color: #735147;
}

.lightbrown {
  color: #B0937E;
}

.lighterbrown {
  color: #A1846F;
}

.red {
  color: #E47D87;
}

.blue {
  color: #5A98CF;
}

.yellow {
  color: #FFDA00;
}

.green {
  color: #49BBBC;
}

.orange {
  color: #FFC400;
}

.lightgreen {
  color: #A5E8E8;
}

.lightblue {
  color: #29B8CA;
}

.lighterblue {
  color: #5864DB;
}

.lightestblue {
  color: #e6fafe;
}

.bg-orange {
  background-color: #FFC400;
}

.bg-lightorange {
  background-color: #FBB65B;
}

.bg-green {
  background-color: #49BBBC;
}

.bg-red {
  background-color: #E47D87;
}

.bg-blue {
  background-color: #5A98CF;
}

.bg-pink {
  background-color: #F5949C;
}

.bg-yellow {
  background-color: #FFDA00;
}

.bg-green {
  background-color: #49BBBC;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-lightblue {
  background-color: #29B8CA;
}

.bg-lightestblue {
  background-color: #e6fafe;
}

.bg-lightestyellow {
  background-color: #FFFFEE;
}

.bg-lighterorange {
  background-color: #F9D5A6;
}

.bg-lightestorange {
  background-color: #FFF9E0;
}

.bg-lightgreen {
  background-color: #A5E8E8;
}

.bg-lightergreen {
  background-color: #ddecd4;
}

.bg-lightestgreen {
  background-color: #E1EFE2;
}

.bg-lightestpink {
  background-color: #FFF7F7;
}

.bg-light2 {
  background-color: #FBFAF8;
}

.bg-lightbrown {
  background-color: #B0937E;
}

.bg-lighterbrown {
  background-color: #A1846F;
}

.bg-brown {
  background-color: #735147;
}

.bg-transgreen {
  background-color: rgba(73, 187, 188, 0.9);
}

.bg-transwhite {
  background-color: rgba(255, 255, 255, 0.9);
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.delay-1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-5 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-6 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay-7 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.delay-8 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay-9 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.delay-10 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.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;
}

.fadeIn {
  animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
/*fadein*/
.fadeInDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-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);
  }
}
/*bounce in*/
.bounceIn {
  opacity: 0;
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: 450ms;
          animation-duration: 450ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3) translate3d(0, 0, 0);
            transform: scale(0.3) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(0.89);
            transform: scale(0.89);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3) translate3d(0, 0, 0);
            transform: scale(0.3) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(0.89);
            transform: scale(0.89);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
  }
}
/*fade in left*/
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  visibility: visible !important;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-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);
  }
  to {
    -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);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

::-moz-selection {
  background: #555555;
  color: #fff;
}

::-moz-selection,
::selection {
  background: #555555;
  color: #fff;
}

html {
  font-size: clamp(0.875rem, 0.625rem + 0.5vw, 1rem);
}

body {
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-family: -apple-system, BlinkMacSystemFont, "Century Gothic", "Segoe UI", "Helvetica Neue", "HelveticaNeue", "Verdana", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "YuGothic", "Yu Gothic Medium", "Yu Gothic", "Meiryo UI", sans-serif;
  white-space: normal;
  word-break: break-all;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6, .fw-bold, .bold, strong, b, th, dt, a.nav-link, main a {
  font-family: -apple-system, BlinkMacSystemFont, "Century Gothic", "Roboto", "Segoe UI", "Helvetica Neue", "HelveticaNeue", "Verdana", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "YuGothic", "Yu Gothic", "Meiryo UI", sans-serif;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  color: #555555;
}

p, li, dt, dd, th, td, .table-striped > tbody > tr:nth-of-type(2n+1) > *, captuion, figcaption, small {
  color: rgba(0, 0, 0, 0.65);
}

.btn:focus,
body button:focus,
body a {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input,
textarea,
select {
  outline: none;
}

.gmap {
  min-height: 400px;
}

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

.max1080 {
  max-width: 1080px !important;
}

.max980 {
  max-width: 980px !important;
}

.max880 {
  max-width: 880px !important;
}

.max780 {
  max-width: 780px !important;
}

.max650 {
  max-width: 650px !important;
}

.va0 {
  vertical-align: 0px;
}

.va1 {
  vertical-align: -1px;
}

.va2 {
  vertical-align: -2px;
}

.va3 {
  vertical-align: -3px;
}

.va4 {
  vertical-align: -4px;
}

.va5 {
  vertical-align: -5px;
}

.zindex100 {
  z-index: 100;
}

.zindex2 {
  z-index: 2;
}

.zindex3 {
  z-index: 3;
}

.smallest {
  font-size: 10px;
  letter-spacing: normal;
}

.bold {
  font-weight: bold;
}

strong {
  background-color: #fcf8e3;
  padding: 0.2em;
}

a {
  color: #49BBBC;
}
a:hover {
  color: #49BBBC;
  text-decoration: none;
}

a.linkoff {
  pointer-events: none;
}

.tel a {
  text-decoration: none !important;
  color: inherit !important;
}

.index h1 {
  font-size: 2rem;
  line-height: 2;
}

.index h2 {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "YuGothic", "Yu Gothic", "Meiryo UI", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.index h2 span {
  font-size: 0.8rem;
  color: #5A98CF;
  display: block;
}

.index h3 {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "YuGothic", "Yu Gothic", "Meiryo UI", sans-serif;
  font-weight: bold;
  color: #5A98CF;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.mybtn {
  display: inline-block;
  color: #fff;
  background: #49BBBC;
  background: -webkit-gradient(linear, left top, right top, from(#49BBBC), to(#5A98CF));
  background: linear-gradient(to right, #49BBBC 0%, #5A98CF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$start-color", endColorstr="$end-color",GradientType=1 );
  border-radius: 5rem;
  text-decoration: none;
  line-height: 1;
  padding: 0.75rem 2.5rem 0.75rem 1.5rem;
  position: relative;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.mybtn::after {
  content: "";
  background: url("../images/right.svg") center center/contain no-repeat;
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: calc(50% - 8px);
  right: 1rem;
}
.mybtn:hover, .mybtn:focus, .mybtn:active {
  color: #fff;
  background: #49BBBC;
  -webkit-box-shadow: 0 0 1rem 0.25rem #49BBBC;
  -ms-box-shadow: 0 0 1rem 0.25rem #49BBBC;
  box-shadow: 0 0 1rem 0.25rem #49BBBC;
}

.mybtn_outline {
  text-align: center;
  display: inline-block;
  border: 1px solid #5A98CF;
  color: #5A98CF;
  border-radius: 5rem;
  text-decoration: none;
  line-height: 1;
  padding: 0.75rem 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mybtn_outline:hover, .mybtn_outline:focus, .mybtn_outline:active {
  -webkit-box-shadow: 0 0 1rem 0.25rem #5A98CF;
  -ms-box-shadow: 0 0 1rem 0.25rem #5A98CF;
  box-shadow: 0 0 1rem 0.25rem #5A98CF;
  background: #5A98CF;
  color: #fff;
}

.btn_circle {
  width: 3rem;
  height: 3rem;
  text-align: center;
  border-radius: 50%;
  position: relative;
}
.btn_circle svg {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.btn_rsv {
  font-weight: bold;
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #49BBBC;
  background: -webkit-gradient(linear, left top, right top, from(#49BBBC), to(#5A98CF));
  background: linear-gradient(to right, #49BBBC 0%, #5A98CF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$start-color", endColorstr="$end-color",GradientType=1 );
  border-radius: 5rem;
  text-decoration: none;
  line-height: 1.2;
  padding: 0.75rem 1.5rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.btn_rsv .fz_sm {
  font-size: 90%;
}
.btn_rsv:hover, .btn_rsv:focus, .btn_rsv:active {
  color: #fff;
  background: #49BBBC;
  -webkit-box-shadow: 0 0 1rem 0.25rem #49BBBC;
  -ms-box-shadow: 0 0 1rem 0.25rem #49BBBC;
  box-shadow: 0 0 1rem 0.25rem #49BBBC;
}

.kv {
  min-height: 400px;
  height: 33vw;
}

@media (max-width: 767.98px) {
  .kv {
    min-height: auto;
    height: 100vw;
  }
}
.kv1 {
  background: url("../images/kv1.jpg") center center/cover no-repeat;
}

.carousel-indicators button {
  height: 8px !important;
  width: 8px !important;
  background-color: #555 !important;
  border-radius: 50%;
}

.index .carousel-indicators {
  bottom: -2rem;
}

a.nav-link {
  color: rgba(0, 0, 0, 0.65);
  display: block;
  padding: 0.75rem 1rem;
  height: 100%;
}
a.nav-link:hover {
  color: #49BBBC;
  background: #fff;
  text-decoration: none;
}
a.nav-link:focus {
  color: #49BBBC;
  text-decoration: none;
}

.dropdown .dropdown-toggle.show::after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  vertical-align: middle;
}

.dropdown-menu a.dropdown-item {
  color: rgba(0, 0, 0, 0.65);
}
.dropdown-menu a.dropdown-item:hover, .dropdown-menu a.dropdown-item:focus, .dropdown-menu a.dropdown-item:active {
  background-color: #fff;
  color: #49BBBC;
}

.dropdown .dropdown-toggle::after {
  width: 6px;
  height: 6px;
  border-left: none;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.offcanvas a.nav-link, .offcanvas a.nav-link:hover, .offcanvas a.nav-link:focus {
  color: rgba(0, 0, 0, 0.65);
  padding: 1.5rem 1rem;
  border-top: 1px solid #ddd;
  background: url("../images/chevron-right.svg") right 1rem center no-repeat !important;
  background-size: 1rem !important;
}
.offcanvas a.nav-link.dropdown-toggle::after, .offcanvas a.nav-link:hover.dropdown-toggle::after, .offcanvas a.nav-link:focus.dropdown-toggle::after {
  display: none;
}
.offcanvas a.nav-link::before, .offcanvas a.nav-link:hover::before, .offcanvas a.nav-link:focus::before {
  content: none;
}
.offcanvas a.nav-link.dropdown-toggle.show, .offcanvas a.nav-link:hover.dropdown-toggle.show, .offcanvas a.nav-link:focus.dropdown-toggle.show {
  background: url("../images/chevron-up.svg") right 1rem center no-repeat !important;
  background-size: 1rem !important;
}
.offcanvas .dropdown-menu.show {
  position: static !important;
  float: none !important;
  top: auto !important;
  left: auto !important;
  -webkit-transform: none !important;
          transform: none !important;
  display: inline-block;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0 1rem 1rem !important;
}
.offcanvas .dropdown-menu.show a.dropdown-item, .offcanvas .dropdown-menu.show a.dropdown-item:hover, .offcanvas .dropdown-menu.show a.dropdown-item:focus {
  padding: 0.75rem 0;
  color: rgba(0, 0, 0, 0.65);
  background: transparent !important;
}

table.table.timetable th, table.table.timetable td, table.table.timetable caption {
  padding: 0.75rem 0.25rem;
}
table.table.timetable th {
  background: #5A98CF;
  color: #fff;
}
table.table.timetable th:first-child {
  border-radius: 6px 0 0 0;
}
table.table.timetable th:last-child {
  border-radius: 0 6px 0 0;
}

.number {
  font-weight: normal;
  color: #5A98CF;
  font-size: 4rem;
  display: block;
  line-height: 1;
  letter-spacing: -0.1rem;
}

.collapsed.collapse_ttl {
  display: block;
  background: url("../images/down.svg") left 1rem center no-repeat;
  background-size: 1rem;
}

.collapse_ttl {
  display: block;
  background: url("../images/up.svg") left 1rem center no-repeat;
  background-size: 1rem;
}

.date_tag {
  color: #aaa;
}

.news_body {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

.index_news.overflow {
  max-height: 18rem;
  overflow-y: auto;
}

.js_inview {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.js_sticky .gnav_sp,
.js_sticky .gnav {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.index_features {
  background: url("../images/index2.jpg") center center/cover no-repeat;
}

.index_symptoms {
  background: url("../images/index3.jpg") center center/cover no-repeat;
}

.index_treatment {
  background: url("../images/index4.jpg") right bottom/cover no-repeat;
}

ul.checklist li {
  background: url("../images/check.svg") left top 0.25rem/1rem no-repeat;
  padding-left: 2rem;
}

ul.checklist li:not(:last-child) {
  margin-bottom: 0.75rem;
}

.border_red {
  border-bottom: solid #E47D87 4px;
}

.border_blue {
  border-bottom: solid #5A98CF 4px;
}

@media (max-width: 767.98px) {
  html {
    font-size: 0.875rem;
  }
  footer {
    padding-bottom: 100px;
  }
  .pageup_btn {
    position: fixed;
    right: 0;
    bottom: 0;
  }
  #tel_up {
    width: 100%;
    height: 4rem;
    background: rgba(252, 252, 252, 0.9);
    -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  #tel_up .tel_rsv {
    width: calc(100% - 3.4rem);
    height: 100%;
    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: 0;
    margin: 0;
  }
  #tel_up .tel_rsv li {
    width: calc(100% - 0.4rem);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #tel_up .tel_rsv li .btn_rsv {
    padding: 0.5rem;
    width: 100%;
    height: calc(100% - 0.6rem);
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  #tel_up .pageup_btn {
    position: static;
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  header .logo {
    width: 250px;
  }
  .index h1 {
    font-size: 1.5rem;
  }
  .index h2 {
    font-size: 1.4rem;
  }
  .index h3 {
    font-size: 1.1rem;
  }
  table.table_text_small th, table.table_text_small td {
    font-size: 0.9rem !important;
  }
  table.table_break th {
    display: block;
  }
  table.table_break td {
    display: block;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .index_treatment {
    padding-bottom: 10rem;
  }
  .kv_lead {
    font-size: 1.25rem;
  }
  footer .footer_nav li {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
    display: inline;
  }
  footer .footer_nav li a.nav-link {
    font-weight: normal;
    font-family: -apple-system, BlinkMacSystemFont, "Century Gothic", "Segoe UI", "Helvetica Neue", "HelveticaNeue", "Verdana", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "YuGothic", "Yu Gothic Medium", "Yu Gothic", "Meiryo UI", sans-serif;
    color: #888888;
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem 0 0;
    display: inline-block;
    background: transparent !important;
  }
  footer .footer_nav li a.nav-link::before {
    content: none;
  }
  footer .footer_nav li a.nav-link:hover {
    color: #555555;
  }
  footer .footer_nav li .dropdown-toggle {
    pointer-events: none;
  }
  footer .footer_nav li .dropdown-toggle::after {
    vertical-align: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  footer .footer_nav li .dropdown-menu {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    -webkit-transform: none !important;
            transform: none !important;
    background: transparent !important;
    position: static;
    display: inline !important;
    padding: 0 !important;
  }
  footer .footer_nav li .dropdown-menu .dropdown-item {
    font-size: 0.9rem;
    color: #888888;
    width: auto;
    display: inline-block !important;
    padding: 0.5rem 0.5rem 0 0;
    background: transparent !important;
  }
  footer .footer_nav li .dropdown-menu a.dropdown-item:hover {
    color: #555555;
  }
}
@media print {
  @page {
    margin: 5mm;
    size: 364mm 515mm;
  }
  body .header {
    position: relative;
  }
  body {
    padding-top: 0;
  }
}