@charset "UTF-8";
/* Scss Document */
/* Scss Document */
.text-body {
  color: rgba(0, 0, 0, 0.65) !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: #2C369A;
}

.yellow {
  color: #FFDA00;
}

.green {
  color: #56c176;
}

.wine {
  color: #D584AF;
}

.orange {
  color: #F39E52 !important;
}

.lightgreen {
  color: #9CCA38;
}

.lightergreen {
  color: #9CCA38;
}

.lightblue {
  color: #29B8CA;
}

.lighterblue {
  color: #5864DB;
}

.lightestblue {
  color: #E7F1F9;
}

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

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

.bg-green {
  background-color: #56c176;
}

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

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

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

.bg-green {
  background-color: #56c176;
}

.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-lightgreen {
  background-color: #9CCA38;
}

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

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

.bg-lightestlightgreen {
  background-color: #F3F7E3;
}

.bg-lightpink {
  background-color: #F9C3C9;
}

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

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

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

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

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

.bg-transgreen {
  background-color: rgba(86, 193, 118, 0.9);
}

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

.bg-transorange {
  background-color: rgba(243, 158, 82, 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-200 {
  animation-delay: 0.2s;
}

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

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

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

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

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

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

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
  80% {
    opacity: 1;
    transform: scale(0.89);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}
/*fade in left*/
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-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;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  visibility: visible !important;
  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, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 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,
::selection {
  background: #56c176;
  color: #fff;
}

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

body {
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Tsukushi A Round Gothic", "筑紫A丸ゴシック", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", sans-serif;
  white-space: normal;
  word-break: break-all;
  font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.85);
}

p,
li,
dt,
dd,
th,
td,
captuion,
figcaption,
small {
  color: rgba(0, 0, 0, 0.65);
}

p {
  font-size: 1.2em;
  color: black;
}

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

input,
textarea,
select {
  outline: none;
}

.gmap {
  min-height: 320px;
}

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

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

.copyright small {
  font-size: 60%;
}

.bold {
  font-weight: bold;
}

strong {
  background: linear-gradient(0deg, #FFEFBF 0%, #FFEFBF 0.5rem, transparent 0.5rem, transparent 100%);
}

a {
  color: #29B8CA;
}

a.mybtn {
  display: inline-block;
  color: #fff;
  padding: .5rem 2rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  border-radius: 5rem;
  text-decoration: none;
  text-align: center;
}
a.mybtn:hover {
  -webkit-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  -moz-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: #56c176;
  border: dotted 2px #56c176;
  padding: .5rem 2.5rem .5rem 2rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  border-radius: 5rem;
  text-decoration: none;
  text-align: center;
  background: url("../images/arrow-right.svg") right 1rem center no-repeat;
  background-size: 1rem;
}
a.mybtn_outline:hover {
  background: url("../images/arrow-right-white.svg") right 1rem center no-repeat #56c176;
  background-size: 1rem;
  color: #fff;
  -webkit-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  -moz-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.nav-link {
  color: rgba(0, 0, 0, 0.65);
  display: block;
  font-size: 1.23rem;
  padding: .5rem 0rem;
  height: 100%;
  font-weight: bold;
}
a.nav-link span {
  color: #9CCA38;
  font-size: 1.6rem;
  display: inline-block;
  font-weight: normal;
  padding-left: 10px;
}
a.nav-link:hover, a.nav-link:focus {
  color: rgba(0, 0, 0, 0.85);
  background: #F9F9F2;
}
a.nav-link:hover span, a.nav-link:focus span {
  color: #56c176;
}

.dropdown-menu a.dropdown-item {
  color: rgba(0, 0, 0, 0.65);
  padding-left: 0;
  padding-right: 0;
}
.dropdown-menu a.dropdown-item:hover, .dropdown-menu a.dropdown-item:focus, .dropdown-menu a.dropdown-item:active {
  color: #56c176;
  background-color: transparent;
}

.dropdown .dropdown-toggle::after {
  vertical-align: middle;
  border: none;
  width: .75rem;
  height: .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 {
  animation: modal_close_btn 0.6s;
}

@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%;
  background: #F9F9F2;
  z-index: 1039;
  overflow-y: auto;
  overflow-x: auto;
}
#menu_modal a.nav-link {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1.5rem;
  text-align: center;
  border-block-end: 1px solid black;
  line-height: 1.8em;
}
#menu_modal a.nav-link:hover, #menu_modal a.nav-link:focus {
  background: transparent;
}

#menu_modal .dropdown-menu.show {
  position: static !important;
  float: none !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: inline-block;
  box-shadow: none !important;
  padding: 0 0 1rem !important;
  background: transparent !important;
}
#menu_modal .dropdown-menu.show a.dropdown-item {
  padding-left: 0;
  padding-right: 0;
  color: rgba(0, 0, 0, 0.65);
}
#menu_modal .dropdown-menu.show a.dropdown-item:hover, #menu_modal .dropdown-menu.show a.dropdown-item:focus {
  background: transparent !important;
  color: rgba(0, 0, 0, 0.65);
}

.is_headersmall .gnav {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  animation-fill-mode: both;
  animation-duration: .3s;
  animation-name: fadeInDown;
  visibility: visible !important;
}
.is_headersmall .gnav a.nav-link {
  padding-top: .75rem;
}

.carousel-indicators li {
  height: 8px;
  width: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.kv {
  -webkit-border-radius: 0 3rem 3rem 0;
  -moz-border-radius: 0 3rem 3rem 0;
  -ms-border-radius: 0 3rem 3rem 0;
  border-radius: 0 3rem 3rem 0;
  height: -webkit-calc(100vh - 190px);
  height: calc(100vh - 190px);
  max-height: 557px;
  min-height: 320px;
}

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

.kv_item2 {
  z-index: 11;
  position: absolute;
  top: -10rem;
  right: 1rem;
  line-height: 1;
}

table.table.timetable th,
table.table.timetable td,
table.table.timetable caption {
  vertical-align: middle;
  padding: .75rem .25rem;
}

table.table.table_info th {
  font-weight: normal;
}
table.table.table_info td {
  font-weight: bold;
}

.news-title {
  background: url("../images/arrow-down-circle.svg") right center no-repeat;
  background-size: 1rem;
  color: rgba(0, 0, 0, 0.65);
}
.news-title:hover, .news-title:focus {
  box-shadow: none !important;
  color: rgba(0, 0, 0, 0.65);
}
.news-title .information_date {
  display: block;
  font-size: 75%;
  color: rgba(0, 0, 0, 0.5) !important;
}

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

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

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

.lead {
  font-size: 2rem;
}

.index h1 {
  font-size: 3.5rem;
  letter-spacing: .05em;
  line-height: 1.2;
  color: #e91e63;
  text-shadow: 1px 2px 4px #ffffff;
}
.index h1 .h1sm {
  color: black;
  font-size: 1.74rem;
}

h2 {
  padding: .1em;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.2em;
  background: #E4F1C6;
  border-radius: 1em;
}
h2.bg-lightpink {
  margin-bottom: 3rem;
  padding: .50em;
}

h3 {
  position: relative;
  color: #56c176;
  line-height: 1.4;
  padding: 0.5em 1em 0.1em 1.8em;
  width: fit-content;
}

h3:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  position: absolute;
  left: 0.5em;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

h4 {
  font-size: 1rem;
}

.feature_item {
  padding-top: 1.5rem;
}
.feature_item h3 {
  padding: 0rem 1rem 0rem;
}
.feature_item p {
  padding: 0 1.25rem;
}
.feature_item a {
  display: inline-block;
  color: #56c176;
  background: url("../images/arrow-right.svg") right 1rem center no-repeat #E4F1C6;
  background-size: 1rem;
  padding: 1rem 1rem 1rem 1rem;
  width: 100%;
  -webkit-border-radius: 0 0 1rem 1rem;
  -moz-border-radius: 0 0 1rem 1rem;
  -ms-border-radius: 0 0 1rem 1rem;
  border-radius: 0 0 1rem 1rem;
  text-decoration: none;
  text-align: center;
}
.feature_item a:hover {
  background: url("../images/arrow-right-white.svg") right 1rem center no-repeat #56c176;
  color: #fff;
  -webkit-box-shadow: 0 0.5rem 1.125rem -0.5rem #aaa;
  -moz-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;
}

.index_display {
  background: url("../images/index5.png") center center no-repeat;
  padding: 10.5% 1rem;
  background-size: cover;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .index_display {
    background: url(../images/index5.png) left top no-repeat;
    background-size: cover;
  }
}
.index_display p {
  text-shadow: 4px 2px 0 rgba(255, 255, 255, 0.8);
}

.index_features::before {
  content: "";
  background: url("../images/index_bg.svg") 0 1px no-repeat #fff;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 4.6%;
  background-size: 100%;
}

.index_treatment .bg-lightestlightgreen h3 {
  border-bottom: 3px dotted #9CCA38;
  padding-bottom: .5rem;
}
.index_treatment .bg-lightestgreen h3 {
  border-bottom: 3px dotted #56c176;
  padding-bottom: .5rem;
}
.index_treatment ul li {
  padding-bottom: .25rem;
}
.index_treatment a {
  color: rgba(0, 0, 0, 0.65);
}

.kvin {
  width: 100%;
  background: #fff;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.kvin.w0 {
  width: 0;
  -webkit-transition: width .5s ease, opacity .5s ease;
  -moz-transition: width .5s ease, opacity .5s ease;
  -o-transition: width .5s ease, opacity .5s ease;
  transition: width .5s ease, opacity .5s ease;
}

.index_access_item {
  font-size: .85rem;
  letter-spacing: normal;
}

.kv_box {
  background: rgba(156, 202, 56, 0.8);
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 1rem;
  color: #fff;
}

.dropdown_rheumatoid .dropdown-item {
  white-space: normal !important;
}

.hauto {
  height: auto;
}

@media all and (-ms-high-contrast: none) {
  .kv_item1 {
    padding-top: 1rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1140px;
  }

  .header.is_headersmall .header_upper {
    padding-top: 45px;
  }

  .w-lg-30 {
    width: 30% !important;
    height: auto;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-70 {
    width: 70% !important;
  }

  .w-lg-60 {
    width: 60% !important;
  }
}
.under {
  background: linear-gradient(transparent 50%, #a8eaff 50%);
}

@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }

  header .logo {
    width: 250px;
  }

  .header.is_headersmall .header_upper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    max-height: 20%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    animation-name: none;
  }
  .header.is_headersmall .header_upper .logo_box {
    display: none;
  }

  .kv {
    max-height: 357px;
  }

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

  .kv_item2 {
    top: -5rem;
    right: auto;
    left: 1rem;
    height: 100px;
  }

  .index h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  .index_display p {
    font-size: 1.8rem !important;
    color: #fefefe;
    text-shadow: 2px 2px 2px black;
    letter-spacing: 5px;
  }

  table.table.timetable th,
  table.table.timetable td,
  table.table.timetable caption {
    padding: .75rem .25rem;
  }

  table.table.table_info td {
    display: block;
    padding-top: 0;
    border-top: none;
  }
  table.table.table_info th {
    display: block;
    padding-bottom: 0;
  }

  table.table_break th {
    display: block;
  }
  table.table_break td {
    display: block;
    padding-top: 0;
    border-top: none;
  }

  .w-sm-25 {
    width: 35% !important;
    height: 35%;
  }
}
@media (min-width: 768px) {
  .gnav .dropdown-menu.dropdown_menu_lg.show {
    width: 35rem !important;
    max-height: 400px;
    overflow-y: auto;
  }
  .gnav .dropdown-menu.dropdown_menu_lg.show .dropdown_rheumatoid .dropdown-item {
    white-space: normal;
  }
}
.more_link {
  display: block;
  text-align: right;
  margin: 1.4rem 0 0;
}
.more_link a {
  display: inline-block;
  text-decoration: none !important;
  color: #7f9849;
  background: #f4ffdd;
  padding: .2rem 1.2rem;
}
.more_link a::after {
  content: ">>";
  display: inline-block;
  margin-left: .2rem;
}

@media (min-width: 768px) {
  .more_link a {
    padding: .5rem 1.5rem;
    font-size: 1rem;
  }
}
.frame_l_g_s1 {
  border: 1px solid #dee2e6 !important;
  margin: 0 auto 1rem;
}
.frame_l_g_s1 span {
  display: block;
  background: #9CCA38;
  margin: 0 auto;
  text-align: center;
  padding: .3rem;
  color: #fff;
  font-weight: bold;
}
.frame_l_g_s1 p {
  padding: .5rem;
}

.frame_l_g_s2 {
  border: 1px solid #dee2e6 !important;
  margin: 0 auto 1rem;
}
.frame_l_g_s2 span {
  display: block;
  background: #28a745;
  margin: 0 auto;
  text-align: center;
  padding: .3rem;
  color: #fff;
  font-weight: bold;
}
.frame_l_g_s2 p {
  padding: .5rem;
}

.btn,
a.btn,
button.btn {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap-pc-sp {
  max-width: 435px;
  margin: 0 auto 20px;
}

a.btn-pc-sp {
  line-height: 1.4;
  width: 49.5%;
  padding: 1.25rem 0;
  color: #ffff;
}
a.btn--contact {
  display: block;
  padding: 1rem 0;
  color: white;
  background: #56c176;
}
a.btn--contact i {
  font-size: 1.5rem;
}
a.btn--contact i.fa-position-left {
  font-size: 3rem;
  left: 2rem;
}
a.btn--contact :hover {
  color: #fff;
}
a.btn--tel {
  display: block;
  margin-top: 15px;
  padding: 0.5rem 1rem;
  color: #ffffff;
  background-image: linear-gradient(90deg, #ffc107, #f09ec2);
}
a.btn--tel i {
  font-size: 2rem;
}
a.btn--tel i.fa-position-left {
  font-size: 2rem;
  left: 2rem;
}
a.btn--tel .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #094;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 1.8rem;
}
a.btn--tel:hover {
  color: #fff;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

table .ttl {
  background: #9CCA38;
  color: white;
  font-weight: bold;
  display: grid;
  box-sizing: border-box;
  text-align: center;
  word-break: keep-all;
}

.table-overview {
  font-size: 1.2em;
}
.table-overview tr {
  border-bottom: 10px solid transparent;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 5px;
  background: #56c176;
  opacity: 0.6;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.pl-150 {
  padding-left: 150px;
}

/* subpage ---------------------------- */
.subpage h1 {
  letter-spacing: .05em;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 1px 2px 4px #009688;
  font-size: 2.6em;
  padding-top: 2.8rem;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .subpage h1 {
    padding: 1em 0.5em;
    font-size: 2.5em;
  }
}

/*=========
accordion
=========*/
.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #e4f0c6;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #cddc39;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid green;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid green;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}
.accordion_area .accordion_one .ac_inner.stay {
  display: block;
}

/*=========
faq
=========*/
.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q．";
  color: #09357f;
  font-size: 20px;
  font-weight: bold;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 26px;
}

.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  content: "A．";
  color: #de0000;
  font-size: 20px;
  font-weight: bold;
}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 24px;
}
