@charset "UTF-8";
/* Scss Document */
/* Scss Document */
.text-body {
  color: #666 !important;
}

.skin {
  color: #FFF6E6;
}

.purple {
  color: #9EB1D2;
}

.pink {
  color: #F5949C !important;
}

.teal {
  color: #29B8CA;
}

.brown {
  color: #735147;
}

.lightbrown {
  color: #B0937E !important;
}

.lighterbrown {
  color: #A1846F !important;
}

.red {
  color: #EC5870;
}

.blue {
  color: #506296;
}

.yellow {
  color: #FFDA00;
}

.green {
  color: #A6D51F;
}

.wine {
  color: #D584AF;
}

.orange {
  color: #FFC400 !important;
}

.lightgreen {
  color: #A5E8E8;
}

.lightblue {
  color: #9DAAD1;
}

.lighterblue {
  color: #5864DB;
}

.lightestblue {
  color: #e8e6f2;
}

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

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

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

.bg-blue {
  background-color: #506296;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bg-transgreen {
  background-color: rgba(166, 213, 31, 0.9);
}

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

.text-right {
  text-align: right !important;
  width: 100%;
}

.text-center {
  text-align: center !important;
  width: 100%;
}

.underline {
  text-decoration: underline;
}

/*!
 * 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-200 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-300 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

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

.delay-500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

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

.delay-700 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

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

.delay-900 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

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

.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;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*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(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 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(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 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 {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    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 shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

html {
  font-size: 14px;
}

body {
  color: #666;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: -apple-system, BlinkMacSystemFont, Century Gothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  white-space: normal;
  word-break: break-all;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  color: #212529;
  font-weight: normal;
}

small {
  line-height: 1;
}

p, li, dt, dd, th, td, captuion, figcaption, small {
  color: #666;
}

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

input, textarea, select {
  outline: none;
}

.gmap {
  height: 380px;
}

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

.rounded-xl {
  border-radius: 1rem;
}

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

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.red {
  color: #AD2236;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt40 {
  margin-top: 4rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

a {
  color: #506296;
}

a:hover {
  color: #506296;
  text-decoration: underline;
}
a:hover img {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

a.btn_normal {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
}
a.btn_normal:hover, a.btn_normal:focus, a.btn_normal:active {
  -webkit-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  -ms-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
}

a.btn_chinese {
  text-decoration: none;
  padding: 0.25rem 0.15rem 0;
  width: 3rem;
  display: block;
  margin: 0.5rem 1rem 0 0;
  font-size: 0.6rem;
  line-height: 1.4;
}

a.btn_chinese:hover, a.btn_chinese:focus, a.btn_chinese:active {
  -webkit-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  -ms-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
}

.mybtn, a.mybtn {
  display: inline-block;
  color: #fff;
  background: #9DAAD1;
  border-radius: 0.25rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
}
.mybtn.bg-pink, a.mybtn.bg-pink {
  background: #F5949C !important;
}
.mybtn:hover, .mybtn:focus, .mybtn:active, a.mybtn:hover, a.mybtn:focus, a.mybtn:active {
  background: #9DAAD1;
  background: -webkit-gradient(linear, left top, right top, from(#9DAAD1), to(#506296));
  background: linear-gradient(to right, #9DAAD1 0%, #506296 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$start-color", endColorstr="$end-color",GradientType=1 );
  -webkit-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  -ms-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
}

a.mybtn_outline {
  display: inline-block;
  color: #fff;
  border: 1px solid #506296;
  color: #506296;
  border-radius: 0.25rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
}
a.mybtn_outline:hover, a.mybtn_outline:focus, a.mybtn_outline:active {
  background: #506296;
  color: #fff;
}

a.linegreen {
  color: #00B900;
}

.d_block {
  display: block;
}

a.nav-link {
  color: #506296;
  display: block;
  padding: 1.25rem 0.5rem;
  height: 100%;
  position: relative;
  font-size: 0.9rem;
}
a.nav-link::before {
  position: absolute;
  top: 25%;
  left: 0px;
  width: 1px;
  height: 50%;
  content: "";
  background: #eee;
}
a.nav-link span {
  font-size: 0.7rem;
  display: block;
  font-weight: normal;
  color: #506296;
}
a.nav-link:hover, a.nav-link:focus {
  color: #506296;
  background: #f8f9fa;
}

.dropdown-menu a.dropdown-item {
  color: #666;
  font-size: 0.9rem;
}
.dropdown-menu a.dropdown-item:hover, .dropdown-menu a.dropdown-item:focus, .dropdown-menu a.dropdown-item:active {
  color: #506296;
  background-color: transparent;
}

.dropdown .dropdown-toggle::after {
  vertical-align: middle;
  border: none;
  width: 0.75rem;
  height: 0.75rem;
  background: url("../images/chevron-down.svg") center center no-repeat;
  background-size: contain;
}

.dropdown.show .dropdown-toggle::after {
  -moz-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
}

.modal_close_btn {
  -webkit-animation: modal_close_btn 0.6s;
          animation: modal_close_btn 0.6s;
}

@-webkit-keyframes modal_close_btn {
  0% {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
}

@keyframes modal_close_btn {
  0% {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
}
#menu_modal {
  position: fixed;
  top: 0px;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1039;
  overflow-y: auto;
  overflow-x: auto;
}
#menu_modal a.nav-link {
  border-top: 1px solid #ddd;
  padding: 1rem 0 !important;
  font-size: 1.25rem;
  color: #666;
}
#menu_modal a.nav-link:hover, #menu_modal a.nav-link:focus {
  background: transparent;
}
#menu_modal .dropdown.show .dropdown-toggle {
  padding-bottom: 0 !important;
}

#menu_modal .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: 1rem 0 !important;
  background: transparent !important;
}
#menu_modal .dropdown-menu.show a.dropdown-item {
  font-size: 1rem;
  padding: 0.5rem 0rem;
  color: #666;
}
#menu_modal .dropdown-menu.show a.dropdown-item:hover, #menu_modal .dropdown-menu.show a.dropdown-item:focus {
  background: transparent !important;
  color: #666;
}

#pageup {
  position: fixed;
  right: 1rem;
  bottom: 6rem;
  z-index: 999;
  width: auto;
  margin: 0;
}
#pageup a {
  width: 60px;
  height: 60px;
  background: #9DAAD1;
  border-radius: 100vh;
  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;
  text-decoration: none;
  padding: 1rem 0 0;
}
#pageup a .chevron-up {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-right: 5px solid #fff;
  border-top: 5px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

footer {
  border-bottom: 10px solid #506296;
  padding-bottom: 10px;
}

footer .footer_nav li {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}
footer .footer_nav li a.nav-link {
  padding: 1rem;
}
footer .footer_nav li a.nav-link span {
  display: none;
}

footer .dropdown .dropdown-toggle::after {
  vertical-align: middle;
}

.gnav {
  border-top: 1px solid #506296;
}

.is_outofheader .gnav {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  -ms-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

/*carousel icons*/
.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 30px;
  height: 30px;
}

.carousel-control-next-icon {
  background: url("../images/chevron-right.svg") center center no-repeat !important;
  background-size: 1rem !important;
}

.carousel-control-prev-icon {
  background: url(../images/chevron-left.svg) center center no-repeat !important;
  background-size: 1rem !important;
}

.carousel-control-next, .carousel-control-prev {
  opacity: 1;
}

.carousel-indicators li {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #fff;
}

.carousel-indicators li.active {
  background-color: #506296;
  opacity: 1;
  filter: alpha(opacity=100);
}

table.table.timetable tr:last-child td {
  padding-bottom: 1.5rem;
}
table.table.timetable tr:first-child td {
  padding-top: 1.5rem;
}
table.table.timetable th, table.table.timetable td {
  vertical-align: middle;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.news-title {
  background: url("../images/plus.svg") right center no-repeat;
  background-size: 1rem;
  color: #666;
}
.news-title:hover, .news-title:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #666;
}

.news-title.active {
  background: url("../images/x.svg") right center no-repeat;
  background-size: 1rem;
}

.font {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

h1 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: lighter;
  font-size: 3.25rem;
}

h2 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: lighter;
  font-size: 2rem;
  margin-bottom: 2rem;
}
h2 span {
  display: block;
  color: #506296;
  font-size: 0.8rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  border-left: 2px solid #9DAAD1;
  padding-left: 1rem;
}

h4 {
  font-size: 1rem;
}

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

.index_other_hospital {
  background: url("../images/index4@2x.jpg") right center no-repeat;
  background-size: auto 100%;
}

.border_top {
  border-top: 2px solid #9DAAD1;
}

a.case_item {
  text-decoration: none;
  background: #fff;
  display: block;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -ms-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
a.case_item:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  -ms-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
a.case_item:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
}

.home_menu a.dropdown-item {
  padding-top: 0;
  padding-bottom: 0;
}
.home_menu a.dropdown-item:hover, .home_menu a.dropdown-item:focus, .home_menu a.dropdown-item:active {
  text-decoration: underline;
  color: #506296;
  background-color: transparent;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  header .logo {
    width: 200px;
  }
  .header.is_outofheader .header_upper {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 100;
    width: 100%;
    -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);
    -webkit-animation-name: none;
    animation-name: none;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 1rem;
  }
  table.table.timetable th, table.table.timetable td {
    padding-bottom: 0.25rem;
  }
  table.table_break th {
    display: block;
  }
  table.table_break td {
    display: block;
    padding-top: 0;
    border-top: none;
  }
  #pageup {
    right: 0.5rem;
  }
  #pageup a {
    width: 40px;
    height: 40px;
    padding: 0.5rem 0 0;
  }
  #pageup a .chevron-up {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
  }
  footer a.nav-link {
    padding: 1rem;
    border-top: 1px solid #ddd;
    background: url("../images/chevron-right.svg") right 1rem center no-repeat !important;
    background-size: 0.75rem !important;
  }
  footer a.nav-link span {
    display: none;
  }
  footer a.nav-link.dropdown-toggle::after {
    display: none;
  }
  footer .dropdown.show a.nav-link {
    background: url("../images/chevron-up.svg") right 1rem center no-repeat !important;
    background-size: 0.75rem !important;
  }
  footer ul li:first-child a.nav-link {
    border: none;
  }
  footer ul li:last-child a.nav-link {
    border-bottom: 1px solid #ddd;
  }
  footer .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 0 1rem !important;
    background: transparent !important;
  }
  footer .dropdown-menu.show a.dropdown-item {
    padding: 0.5rem 1rem 0rem;
    text-align: left;
    color: #666;
  }
  footer .dropdown-menu.show a.dropdown-item:hover, footer .dropdown-menu.show a.dropdown-item:focus {
    background: transparent !important;
    color: #666;
  }
  .index_other_hospital {
    background-image: none;
  }
  .gmap {
    height: 320px;
  }
}
@media (min-width: 768px) {
  .dropdown_2nd_box {
    margin-left: 10rem;
  }
}
.brown {
  color: #321200;
}

.doui {
  clear: both;
  width: 90%;
  padding: 5%;
  /*box-shadow: inset 0px 0px 0px 3px #9DAAD1;*/
  border: #9DAAD1 6px solid;
  overflow: hidden;
  margin: 0 auto 30px;
}

.doui h5 {
  border: none;
}

.doui p {
  margin: 0 0 20px;
}

.doui figure {
  width: 150px;
  height: 60px;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 768px) {
  .doui {
    clear: both;
    width: 94%;
    padding: 3%;
    overflow: hidden;
    position: relative;
    margin: 0 auto 30px;
  }
  .doui h5 {
    border: none;
    width: 72%;
    float: left;
  }
  .doui p {
    width: 72%;
    float: left;
    margin: 0;
  }
  .doui figure {
    width: 150px;
    height: 60px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 25px;
    right: 3%;
  }
}
.has-number {
  padding-left: 0 !important;
}
.has-number > li {
  padding-left: 1.3em;
  line-height: 1.4;
  counter-increment: number 1;
  position: relative;
}
.has-number > li::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  left: 0;
}
.has-number > li::marker {
  content: none;
}

.marker-white > .text-white::marker {
  color: #fff !important;
}

.has-number {
  counter-reset: number;
}

.has-number span::before {
  counter-increment: number;
  content: counter(number) ".";
}

.table-primary.middle {
  vertical-align: middle !important;
}

.width-25 td, .width-25 th {
  width: 25%;
  text-align: center;
  vertical-align: middle;
}

.width-33 td, .width-33 th {
  width: 33%;
  text-align: center;
  vertical-align: middle;
}

td div.flex_img {
  display: block;
}
td div.flex_img img {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  td div.flex_img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}/*# sourceMappingURL=common.css.map */