.text-body {
  color: #604B3B !important;
}

.lighter {
  color: #888888;
}

.purple {
  color: #9EB1D2;
}

.pink {
  color: #F5949C;
}

.brown {
  color: #AF9772;
}

.lightbrown {
  color: #B0937E;
}

.lighterbrown {
  color: #F0E8DC;
}

.red {
  color: #EC5870;
}

.blue {
  color: #2C369A;
}

.yellow {
  color: #FFDA00;
}

.green {
  color: #A6D51F;
}

.orange {
  color: #FFC400;
}

.lightgreen {
  color: #A5E8E8;
}

.lightblue {
  color: #29B8CA;
}

.lighterblue {
  color: #5864DB;
}

.lightestblue {
  color: #E7F1F9;
}

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

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

.bg-green {
  background-color: #A6D51F;
}

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

.bg-blue {
  background-color: #2C369A;
}

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

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

.bg-green {
  background-color: #A6D51F;
}

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

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

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

.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: #FDFBF6;
}

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

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

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

.bg-transgreen {
  background-color: rgba(166, 213, 31, 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;
}

.linkoff a, a.linkoff {
  pointer-events: none;
}

::-moz-selection {
  background: #604B3B;
  color: #fff;
}

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

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

body {
  background: #FDFBF6;
  color: #604B3B;
  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;
}

h1, h2 {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: lighter;
}

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

h3, h4, h5, h6 {
  line-height: 1.5;
  color: #604B3B;
}

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

.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: 320px;
}

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

.max680 {
  max-width: 680px !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;
}

.zindex1000 {
  z-index: 1000;
}

.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: #AF9772;
}
a:hover {
  color: #AF9772;
  text-decoration: none;
}

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

.font {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: lighter;
}

.vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.index h1 {
  font-size: 3rem;
  text-shadow: 0px 1px 10px #ffffff, 1px 0px 10px #ffffff, -1px 0px 10px #ffffff, 0px -1px 10px #ffffff;
}

.index h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.index h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.mybtn {
  text-align: center;
  display: inline-block;
  color: #fff;
  background: #AF9772;
  border-radius: 5rem;
  text-decoration: none;
  line-height: 1;
  padding: 1rem 2rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.mybtn:hover, .mybtn:focus, .mybtn:active {
  color: #fff;
  background: #AF9772;
  -webkit-box-shadow: 0 0 1rem 0.25rem #AF9772;
  -ms-box-shadow: 0 0 1rem 0.25rem #AF9772;
  box-shadow: 0 0 1rem 0.25rem #AF9772;
}

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

.btn_circle {
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  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;
}

:target {
  scroll-margin-top: 4rem;
}

@media (max-width: 767.98px) {
  :target {
    scroll-margin-top: 2rem;
  }
}
.kv {
  min-height: 455px;
  height: 40vw;
}

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

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

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

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

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

@media (max-width: 767.98px) {
  .kv {
    min-height: auto;
    height: 125vw;
  }
}
.carousel-item {
  -webkit-transition: -webkit-transform 0.6s ease-in;
  transition: -webkit-transform 0.6s ease-in;
  transition: transform 0.6s ease-in;
  transition: transform 0.6s ease-in, -webkit-transform 0.6s ease-in;
}

.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: #604B3B;
  display: block;
  padding: 1rem 1rem;
  height: 100%;
}
a.nav-link:hover {
  color: #fff;
  background: #AF9772;
  text-decoration: none;
}
a.nav-link:focus {
  color: #fff;
  background: #AF9772;
  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: #604B3B;
}
.dropdown-menu a.dropdown-item:hover, .dropdown-menu a.dropdown-item:focus, .dropdown-menu a.dropdown-item:active {
  background-color: #AF9772;
  color: #fff;
}

.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: #604B3B;
  padding: 2rem 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: #604B3B;
  background: transparent !important;
}

table.table.timetable th, table.table.timetable td {
  padding: 0.5rem 0.25rem;
}

table.table_info th, table.table_info td {
  padding: 1rem;
}

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

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

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

.date_tag {
  color: #AF9772;
  padding-right: 0.5rem;
}

.new {
  display: none;
}

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

.sidebtn_tel {
  cursor: default;
  width: 60px;
  -webkit-transition: width 0.2s ease, opacity 0.2s ease;
  transition: width 0.2s ease, opacity 0.2s ease;
}
.sidebtn_tel span {
  display: none;
}
.sidebtn_tel:hover {
  width: 220px;
  -webkit-transition: width 0.2s ease, opacity 0.2s ease;
  transition: width 0.2s ease, opacity 0.2s ease;
}
.sidebtn_tel:hover span {
  display: block;
}

.sidebtn_web {
  width: 60px;
  background: #fff;
  color: #AF9772;
}
.sidebtn_web:hover {
  background: #AF9772;
  color: #fff;
}

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

@media (max-width: 767.98px) {
  html {
    font-size: 0.875rem;
  }
  body {
    padding-top: 55px;
  }
  header .logo {
    width: 50px;
  }
  .index h1 {
    font-size: 1.5rem;
    text-shadow: 0px 1px 3px #ffffff, 1px 0px 3px #ffffff, -1px 0px 3px #ffffff, 0px -1px 3px #ffffff;
  }
  .index h2 {
    font-size: 1.5rem;
  }
  .index h3 {
    font-size: 1rem;
  }
  table.table_text_small th, table.table_text_small td {
    font-size: 0.9rem !important;
  }
  table.table_break th {
    display: block;
  }
  .overview table.table_break th {
    padding-bottom: 0;
  }
  table.table_break td {
    display: block;
    padding-top: 0;
  }
  .date_tag {
    display: block;
  }
  footer {
    padding-bottom: 150px;
  }
  .mtop {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  header .gnav {
    height: 3.5rem;
  }
  .index .headlogo {
    top: 3.5rem !important;
  }
  .mtop {
    margin-top: -3rem;
  }
  .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);
  }
  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: #604B3B;
  }
  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: #604B3B;
  }
}
@media print {
  @page {
    margin: 5mm;
    size: 364mm 515mm;
  }
  body .header {
    position: relative;
  }
  body {
    padding-top: 0;
  }
}
.comp-reservation-pop {
  margin: auto;
  width: 100vw;
  z-index: 999;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background-color: #FDFBF6;
  overflow: hidden;
}
.comp-reservation-pop::before, .comp-reservation-pop::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
}
.comp-reservation-pop.open {
  opacity: 1;
  pointer-events: all;
}
.comp-reservation-pop .hum_close {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10001;
  color: #604B3B;
  background: none;
  border: none;
}
.comp-reservation-pop .hum_close svg {
  width: 25px;
}
.comp-reservation-pop .hum_close svg .cls-1 {
  fill: none;
  stroke: #604B3B;
}
.comp-reservation-pop .hummenu_inner {
  width: 100vw;
  height: 844px;
  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.comp-reservation-pop .hummenu_inner::-webkit-scrollbar {
  display: none;
}
.comp-reservation-pop .hummenu_inner h2 {
  margin: 1rem auto;
  padding: 1rem;
  text-align: center;
  font-size: 1.8rem;
}
.comp-reservation-pop .hummenu_inner h2::before {
  content: attr(data-en);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(166, 128, 12, 0.2);
  font-size: 4.8rem;
  font-style: italic;
}
.comp-reservation-pop .hummenu_inner .comp-section-ttl {
  padding-top: 60px;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item {
  background: none;
  border-radius: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 -2px 6px 0 rgba(216, 216, 216, 0.5);
  box-shadow: 0 -2px 6px 0 rgba(216, 216, 216, 0.5);
  margin-bottom: 20px;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #604B3B;
  border-radius: 0 20px;
  color: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button .menu_name, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a .menu_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button .menu_name .icon, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a .menu_name .icon {
  width: 40px;
  margin-right: 10px;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button .menu_name .txt, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a .menu_name .txt {
  font-size: 1.6rem;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button .arrow, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a .arrow {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button .arrow svg .cls-1, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a .arrow svg .cls-1 {
  fill: none;
  stroke: #fff;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button.monshin_button, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a.btn_general {
  background: #AF9772;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button.reserve_button, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a.btn_beauty {
  background: #AF9772;
}
.comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item .menu_description {
  padding: 15px 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.comp-reservation-pop .hummenu_inner .reservation_lead_txt {
  margin-top: 30px;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
  line-height: 1.8;
  padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
  .comp-reservation-pop {
    margin: auto;
    width: auto;
    height: auto;
    background: none;
    will-change: opacity;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .comp-reservation-pop::before, .comp-reservation-pop::after {
    display: none;
  }
  .comp-reservation-pop.open {
    opacity: 1;
    pointer-events: all;
  }
  .comp-reservation-pop .hum_close {
    width: 100px;
    height: 100px;
    top: -12rem;
  }
  .comp-reservation-pop .hum_close svg {
    width: 40px;
  }
  .comp-reservation-pop .hum_close svg .cls-1 {
    fill: none;
    stroke: #fff;
  }
  .comp-reservation-pop .hummenu_inner {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 1100px;
    height: auto;
    background: #FDFBF6;
    padding: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 20px;
    -webkit-box-shadow: 0 -2px 6px 0 rgba(216, 216, 216, 0.5);
    box-shadow: 0 -2px 6px 0 rgba(216, 216, 216, 0.5);
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .comp-reservation-pop .hummenu_inner .comp-section-ttl {
    padding-top: 0px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
  }
  .comp-reservation-pop .hummenu_inner h2 {
    margin: 0 auto;
    padding: 1rem;
    font-size: 2.2rem;
  }
  .comp-reservation-pop .hummenu_inner h2::before {
    top: 1.5rem;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item {
    width: 48%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0px;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a {
    width: 100%;
    border-radius: 0 20px;
    padding: 15px 20px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button.monshin_button, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a.btn_general {
    background: #604b3b;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button.reserve_button, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a.btn_beauty {
    background: #a6800c;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button:hover, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a:hover {
    opacity: 0.75;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button .arrow, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a .arrow {
    width: 14px;
    height: 18px;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item button .arrow svg .cls-1, .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item a .arrow svg .cls-1 {
    fill: none;
    stroke: #fff;
  }
  .comp-reservation-pop .hummenu_inner .menu_wrapper .menu_item .menu_description {
    padding: 20px 25px;
  }
  .comp-reservation-pop .hummenu_inner .reservation_lead_txt {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0px;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 0px;
  }
  .comp-reservation-pop .hummenu_inner .reservation_lead_txt p span {
    display: block;
  }
}