
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP";
  color: #444444;
}

a {
  color: #043820;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Kosugi Maru', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #4F8241;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #70AE5F;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# フローティングメニュー
--------------------------------------------------------------*/
.floating-nav {
  position: fixed;
  width: 300px;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 9999;
}
.floating-nav .tel {
  margin-left: 20px;
  padding: 5px;
}
.floating-nav .tel img {
  max-height: 80px;
}

@media (max-width: 576px) {
  .floating-nav {
    width: 100%;
    top: 17%;
  }
  .floating-nav .tel {
    margin-left: 0;
    padding: 4px;
  }
  .floating-nav .tel img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #F9FFFA;
  z-index: 997;
  padding: 12px 0;
  border-bottom: 1px solid #fafaf1;
}
#header.header-scrolled {
  border-color: #fafaf1;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #68361a;
}
#header .logo img {
  margin:0;
  padding: 0;
  max-height: 65px;
}
@media (max-width: 768px) {
  #header .logo img {
  max-height: 60px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 16px;
  color: #4C7C3F;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a, .navbar a:focus span {
  font-family: "Poppins", sans-serif;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #2B4724;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #5E9C4E;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  font-weight:bold;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #7DCE67;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #2487ce;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fafaf1;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #4C7C3F;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #2B4724;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  text-align: center;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #4C7C3F;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 120vh;
  background: url("../img/top2-2.jpg") no-repeat top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#hero .container {
  padding-top: 80px;
}
#hero h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 72px;
  color: #F9FFFA;
  font-family: "Poppins", sans-serif;
  text-shadow: 1px 2px 3px #444;
}
#hero h2 {
  color: #f7d76b;
  margin: 10px 0 0 0;
  font-size: 28px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-shadow: 1px 2px 3px #444;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2487ce;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-height: 800px) {
  #hero {
      height: 92vh;
  }
}
@media (max-width: 992px) {
  #hero {
      height: 80vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #hero {
      height: 36vh;
      margin-top: 90px;

  }
#hero h1 {
    font-size: 22px;
    line-height: 36px;
}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #E0FFE4;
}

.section-bg2 {
  background-color: #EDFFED;
}

.section-please-bg {
  background-color: #ba5054;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #043820;
}

.section-title h2 i {
  position: relative;
  right: 3px;
  top: 4px;
  font-size: 32px;
  color: #417059;
  line-height: 1;
}

.section-title h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #863538;
}
.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: #401f0f;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
}
.services .content ul {
  list-style: none;
  padding: 0;
}
.services .content ul li {
  padding-left: 28px;
  position: relative;
}
.services .content ul li + li {
  margin-top: 10px;
}
.services .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}
.services .table {
  border: 1px solid #5e9c4e;
  border-collapse: collapse;
  border-spacing: 0;
}
.services .table th {
  border: 1px solid #5e9c4e;
  background: #B5D5AD;
  font-size: 18px;
  color: #40594C;
  text-align: center;
  font-weight: bold;
}
.services .table td {
  border-right: 1px solid #5e9c4e;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  color: #454545;
}
.services .table .kamoku {
  text-align: center;
  vertical-align: middle;
  font-size: 24px;
  color: #3C4C2D;
  font-weight: 500;
}
.services .table td.doctor {
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  background:#F7F6CF;
  color: #454545;
}
.services .table td.time {
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  background:#F7F6CF;
  color: #454545;
}
.services .table .maru {
  text-align: center;
  vertical-align: middle;
  font-size: 30px;
  color: #5e9c4e;
}
@media (max-width: 991px) {
  .services .icon-box .img-box {
    text-align: center;
  }
  .services .icon-box img {
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .services .table th {
    font-size: 14px;
  }
  .services .table td {
    font-size: 14px;
    white-space: nowrap;
  }
  .services .table .maru {
    font-size: 16px;
    white-space: nowrap;
  }
  .services .table .doctor {
      font-size: 13px;
  }
  .services .icon-box h4 {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .services .table th {
    font-size: 14px;
  }
  .services .table td {
    font-size: 14px;
    white-space: nowrap;
  }
  .services .table td.time {
    width: 18%;
    font-size: 14px;
    background:#efefef;
  }
  .services .table td.doctor {
    width: 18%;
    font-size: 14px;
    background:#F7F6CF;
  }
  .services .table .maru {
    font-size: 16px;
    white-space: nowrap;
  }
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0 60px 0;
}
#schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}
#schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}
#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 100px;
}
@media (max-width: 991px) {
  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}
@media (max-width: 767px) {
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
}
@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}
#schedule .nav-tabs a.active {
  background-color: #f82249;
  color: #fff;
}
#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}
@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}
#schedule .tab-pane {
  transition: ease-in-out 0.2s;
}
#schedule .schedule-item {
  border-bottom: 1px solid #B5D5AD;
  padding-top: 22px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}
#schedule .schedule-item:hover {
  background-color: #fff;
}
#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}
#schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}
#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}
#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #444;
}
#schedule .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}
#schedule .schedule-item p {
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #F9F9F9;
}
.about .greeting {
  margin-bottom: 30px;
}
.about .greeting p {
  font-size: 17px;
  color: #454545;
  line-height: 1.8;
}
.about .content {
  margin-bottom: 20px;
}
.about .content h3 {
  margin: 15px 0 20px 0;
  font-weight: 600;
  font-size: 22px;
  color: #454545;
  border-left: 6px solid #7D9B74;
  padding: 0 0 0 10px;
}
.about .content h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}
.about .content h5 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #454545;
  border-left: 6px solid #9ABF8F;
  padding: 0 0 0 10px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5cb874;
}
.about .content p {
  font-size: 16px;
  padding: 0;
}

.about .icon-box {
  padding: 15px 15px 10px 15px;
  width: 100%;
  transition: all ease-in-out 0.3s;
  background: #E0E2D9;
  border: 2px solid #B3C191;
  border-radius: 12px;
  box-shadow: 0px 5px 20px 0px rgba(122, 130, 109, 0.3);
}
.about .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: #555656;
}
.about .icon-box ul {
  list-style: none;
  padding: 0;
}
.about .icon-box ul li {
  padding-bottom: 5px;
  font-size: 14px;
}
.about .icon-box ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5cb874;
}
.about .icon-box p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}
.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #124265;
}
.about-video .content ul {
  list-style: none;
  padding: 0;
}
.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.about-video .content ul i {
  font-size: 24px;
  color: #2487ce;
  position: absolute;
  left: 0;
  top: -2px;
}
.about-video .content p:last-child {
  margin-bottom: 0;
}
.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about-video .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about-video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about-video .play-btn:hover::after {
  border-left: 15px solid #2487ce;
  transform: scale(20);
}
.about-video .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  padding: 60px 0 20px 0;
}

.featured img {
  border-radius: 0;
}
.featured .card {
  border: 0;
  text-align: ceneter;
}
.featured .card-body {
  -moz-text-align-last: left;
  text-align-last: left;
}
.featured .card-title a {
  font-weight: 600;
  font-size: 18px;
  color: #052c3f;
}

.featured .card-text {
  font-weight: 600;
  font-size: 18px;
  color: #705D4E;
  text-align: left !important;
}
.featured .btn {
  border-radius: 4px;
  padding: 4px 30px 6px 30px;
  border: 2px solid #85b0be;
  color: #85b0be;
  font-weight: 500;
}
.featured .btn:hover {
  background-color: #85b0be;
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
  line-height: 1.6;
}
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #c0c0c0;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #124265;
  margin: 0 10px;
  display: inline-block;
}
.team .member .social a:hover {
  color: #2487ce;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
  line-height: 0;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #124265;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Medical
--------------------------------------------------------------*/
.medical {
  padding: 60px 0;
  background-color: #EDF9F1;
}
.medical .icon-box {
  min-height: 210px;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 0 25px 0 rgba(79, 112, 89, 0.3);
}
.medical .icon-box .img-box {
  text-align: left;
}
.medical .icon-box img {
  text-align: center;
  margin-bottom: 20px;
  max-width: 80px;
}
.medical .icon-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 26px;
  color: #2b4724;
  border: 1px solid #B5D5AD;
  background: #E3EFE0;
  padding: 8px; 10px;
}
.medical .icon-box h4 {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 20px;
  color: #2b4724;
  border: 1px solid #B5D5AD;
  background: #E3EFE0;
  padding: 8px; 10px;
}
.medical .icon-box i {
  position: relative;
  right: 3px;
  top: 2px;
  font-size: 22px;
  color: #5e9c4e;
  line-height: 1;
}
.medical .icon-box p {
  margin-bottom: 30px;
  font-size: 16px;
}
.medical .services-box {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 30px;
}
.medical .services-box h4 {
  max-width: 120px;
  background: #c76b4d;
  padding: 6px 8px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  border: 1px solid #934E39;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 16px;
}
.medical .services-box p {
  margin-bottom: 20px;
  font-size: 18px;
}
.medical .table {
  border-radius: 10px;
  border: 2px solid #4A774E;
  border-collapse: collapse;
  border-spacing: 0;
  box-shadow: 0px 0 25px 0 rgba(79, 112, 89, 0.3);
}
.medical .table th {
  border: 1px solid #4A774E;
  background: #4A774E;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.medical .table td {
  border-right: 1px solid #4A774E;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  color: #3C4C2D;
  height: 80px;
}
@media (max-width: 991px) {
  .medical .icon-box .img-box {
    text-align: left;
  }
  .medical .icon-box img {
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .medical .table th {
    font-size: 14px;
  }
  .medical .table td {
    font-size: 14px;
    white-space: nowrap;
  }
  .medical .icon-box h4 {
    text-align: left;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #b21511;
  float: left;
  width: 44px;
  height: 44px;
  background: #ea4335;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #4f4f4f;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #2487ce;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #2487ce;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #2487ce;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3194db;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #B5D5AD;
  min-height: 40px;
  margin-top: 86px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 88px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #68361a;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer-bg {
  background: url("../img/footer-bg.png") top center no-repeat;
  height: 26px;
}
#footer {
  background: #B5D5AD;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}
#footer h3 img {
  max-height: 65px;
  margin-top: 12px;
  margin-bottom: 8px;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 16px;
  padding: 0;
  margin: 0 0 15px 0;
  color: #40594C;
}
#footer .getstarted, #footer .getstarted:focus {
  background: #5E9C4E;
  padding: 6px 40px;
  margin: 30px;
  border-radius: 30px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-weight:bold;
}
#footer .getstarted:hover, #footer .getstarted:focus:hover {
  color: #fff;
  background: #7DCE67;
}
#footer .tel {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 5px 0;
}
#footer .copyright {
  margin: 20px 0 5px 0;
  color: #40594C;
}
/*--------------------------------------------------------------
# Telephone
--------------------------------------------------------------*/
.telephone {
  padding: 30px 0;
  background-color: #EDF9F1;
}

/*641px〜PC　PC上では見えないようにする*/
@media screen and (min-width:641px){
	.telephone, .footer_area{
		display: none;
}	
}
 
/*スマホ〜641pxの幅サイズまで*/
@media screen and (max-width:640px){
.footer_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #5E9C4E;
}
.footer_area .footer_area_inner {
    position: relative;
    width: 80%;
    margin: 0px auto;
    padding: 15px 0;
	margin-right: 0px;
}
.footer_area .footer_area_inner .footer_area_inner_btn {
    width: 85%;
    padding: 11px 0;
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
	line-height: 1.3;
    
}
.inquiry_btn {
    background-color: #6CB259;
    -webkit-border-radius: 30px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
	width: 80%;
    padding: 6px 0;
    font-size: 22px;
    font-weight: bold;
}
.inquiry_btn:link, .inquiry_btn:visited {
    color: #FFFFFF !important;
}
.footer_area_inner span{
	color: #fff;
}
#siteBottom{
	margin-bottom: 85px;
}
}


.mb-3 iframe {
	width: 100%;
	height: 230px;
    border: none;
    overflow-y: hidden;
}

.container_news {
        margin: 10px 0 20px 0;
	    width: 100%;
        border: none;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
