/*--------------------------------------------------------------
# 共通
--------------------------------------------------------------*/
body {
  font-family: "リュウミン R-KL";
  color: #444;
}

a {
  color: #4fa6d5;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# バックボタン
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #FC3283;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fe65a0;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #1e4356;
}

#header.header-transparent {
  background: none;
}

#header.header-scrolled {
  background: rgba(40, 71, 124, 0.8);
  height: 90px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 74px;
}

/*--------------------------------------------------------------
# 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 li .adr {
  padding: 0 0 0 30px;
}

.navbar li .adr .content {
  border: 1px solid #fff;
  background: #20B4E5;
}
.navbar li .adr .content:hover {
  border: 1px solid #eee;
  background: #59BEDD;
}
.navbar li .adr .content a {
  padding: 6px 20px 6px 20px;
  font-family:"Shin Maru Go Regular";
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family:"Shin Maru Go Regular";
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #F7F6CA;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

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

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

  .navbar ul {
    display: none;
  }
  .navbar li .adr {
  padding: 0 20px 0 20px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 38, 48, 0.9);
  transition: 0.3s;
}

.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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1e4356;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #68A4C4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

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

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #dcd3b2;
}

#hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  background: linear-gradient(to top, rgba(232, 242, 254, 0), rgba(30, 67, 86, 0.3)), url("../img/top-img.jpg") center top no-repeat;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

#hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: #43bee8;
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero::after {
    width: 180%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero::before {
    top: 0;
    width: 180%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

@media (max-width: 575px) {
  #hero {
      height: 65vh;
  }

  #hero::after {
    background: linear-gradient(to top, rgba(232, 242, 254, 0), rgba(30, 67, 86, 0.2)), url("../img/top-img-575px.jpg") center top no-repeat;
    background-size: contain;
    left: 40%;
    top: 0;
    width: 200%;
    height: 85%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero::before {
    left: 50%;
    top: 0;
    width: 200%;
    height: 84%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#hero-no-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

#hero-no-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url("../img/top-img-2.jpg") center top no-repeat;
}

#hero-no-slider h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 700;
}

#hero-no-slider p {
  color: #fff;
}

#hero-no-slider .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

#hero-no-slider .btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #hero-no-slider h2 {
    font-size: 30px;
  }
}

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

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title img {
  text-align: center;
  padding-bottom: 10px;
  max-width: 145px;
}

.section-title h2 {
  font-size: 30px;
  font-family:"Shin Maru Go Regular";
  color: #454545;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 診療科目
--------------------------------------------------------------*/
.department {
  padding-bottom: 20px;
  background: #dcd3b2;
}

.department .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #3fb3da;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
  transition: all 0.3s ease-in-out;
  border-radius: 16px;
}

.department .icon {
  margin: 0 auto 15px auto;
  padding-top: 10px;
  text-align: center;
}

.department .icon img {
  max-width: 50px;
}

.department .title {
  font-weight: 700;
  font-family:"Jun 501";
  margin-bottom: 15px;
  font-size: 30px;
  color: #fff;
  text-align: center;
}

.department .title a {
  color: #fff;
}

.department .description {
  font-size: 17px;
  font-family:"Hiragino Maru Gothic W4 JIS2004";
  line-height: 28px;
  margin-bottom: 0;
  color: #fff;
}

@media (max-width: 575px) {
  .department {
      padding-top: 0;
  }
}

/*--------------------------------------------------------------
# 当院からのお知らせ
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0;
}

#schedule .news-box {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  padding: 40px 40px 30px 40px;
  margin-bottom: 40px;
}

#schedule .news-box h3 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
}

#schedule .news-box p {
  line-height: 1.6;
}
#schedule .news-box p.doctor {
  font-size: 18px;
  line-height: 1.4;
  text-align: right;
}


#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;
  }
  #schedule .news-box {
    padding: 30px 20px 25px 20px;
  }
}
@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-box {
  transition: all ease-in-out 0.3s;
  width: 100%;
  box-shadow: 0 0 8px 0 rgba(68, 88, 144, 0.12);
  background: #F9E9D1;
  border-radius: 6px;
  border: 1px solid #F7A222;
  margin: 0 auto;
  padding: 20px 20px;
}
#schedule .schedule-box:hover {
  background-color: #fff;
}
#schedule .schedule-box time {
  font-family: "Noto Sans JP";
  padding-bottom: 5px;
  text-align: right;
}

#schedule .schedule-box h4 {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
#schedule .schedule-box p {
  font-size: 16px;
  color: #454545;
  margin-bottom: 0;
}


#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}
#schedule .schedule-item:hover {
  background-color: #fff;
}
#schedule .schedule-item time {
  font-family: "Noto Sans JP";
  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-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
#schedule .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}
#schedule .schedule-item p {
  color: #454545;
  margin-bottom: 0;
}

#schedule iframe {
  width: 100%;
  height: 270px;
  border: none;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  #schedule iframe {
    height: 340px;
  }
}

/*--------------------------------------------------------------
# お知らせ一覧
--------------------------------------------------------------*/
#newslist {
  padding: 0;
  background: #fff;
}
#newslist .page-item {
  padding-top: 20px;
  font-size: 16px;
  font-family:"Shin Go Regular";
}
#newslist .schedule-item {
  border-bottom: 1px solid #43bee8;
  padding-top: 20px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}
#newslist .schedule-item:hover {
  background-color: #fff;
}
#newslist .schedule-item span {
  font-family:"Shin Go Regular";
  padding-bottom: 5px;
  display: inline-block;
}
#newslist .schedule-item h4 a {
  font-family:"Shin Maru Go Regular";
  font-size: 22px;
  font-weight: 600;
  line-height: 1.0;
  color: #43bee8;
}
/*--------------------------------------------------------------
# お知らせ
--------------------------------------------------------------*/
.news {
  padding: 170px 0 120px 0;
}

.news h3 {
  font-size: 28px;
  font-family:"Shin Maru Go Regular";
  color: #454545;
  margin-bottom: 25px;
}

.news p {
  font-size: 18px;
  font-family:"Hiragino Maru Gothic W4 JIS2004";
}

.news p.date {
  font-size: 16px;
  font-family:"Shin Go Regular";
}

.news .php-email-form {
  width: 100%;
  background: #fff;
}

.news .news-form .form-group {
  padding-bottom: 8px;
}

.news .news-form input,
.news .news-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.news .news-form input {
  height: 44px;
}

.news .news-form textarea {
  padding: 10px 12px;
}

.news .news-form input[type=file] {
  background: #BCD3E2;
  border: 0;
  padding: 10px 35px;
  color: #454545;
}

.news .news-form button[type=submit] {
  background: #1977cc;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.news .news-form button[type=submit]:hover {
  background: #1c84e3;
}

.news input[type=submit] {
  background: #1977cc;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-right: 7px;
}
.news input[type=submit]:hover {
  background: #1c84e3;
}
.news input[type=button] {
  background: #1977cc;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-right: 10px;
}
.news input[type=button]:hover {
  background: #1c84e3;
}

.news .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}
.news .schedule-item:hover {
  background-color: #fff;
}
.news .schedule-item time {
  font-family: "Noto Sans JP";
  padding-bottom: 5px;
  display: inline-block;
}
.news .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}
.news .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}
.news .schedule-item h4 {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.8;
}
.news .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}
.news .schedule-item p {
  color: #454545;
  margin-bottom: 0;
}

.news .schedule-item input[type=submit] {
  background: #FF450C;
  border: 0;
  padding: 6px 22px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-right: 10px;
}
.news .schedule-item input[type=submit]:hover {
  background: #FF7F59;
}

.news .pager input[type=submit] {
  background: #eee;
  border: 0;
  padding: 6px 15px;
  color: #fff;
  transition: 0.4s;
  border-radius: 8px;
  margin-right: 7px;
  border: 1px solid #ACC5D6;
  color: #454545;
}
.news .pager input[type=submit]:hover {
  background: #BEC9D1;
  border: 1px solid #6BAAD3;
}


/*--------------------------------------------------------------
# 院長ご挨拶
--------------------------------------------------------------*/
.greeting {
  background: linear-gradient(rgba(62, 111, 199, 0.9), rgba(112, 151, 200, 0.6)), url("../img/greeting-bg.jpg") fixed center center;
  background-size: cover;
  padding:80px 0;
}

.greeting h3 {
  font-family: "Shin Go Medium";
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.greeting p {
  font-family: "UD Shin Go Regular";
  color: #fff;
  line-height: 1.9;
  font-size: 18px;
}

.greeting .member {
  padding: 5px;
  text-align: center;
}

.greeting .member .pic {
  overflow: hidden;
  width: 160px;
  border-radius: 50%;
  border: 3px solid #B6C2D6;
  margin: 0 auto 20px auto;
}

.greeting .member h4 {
  font-family: "Hiragino Maru Gothic W4 JIS2004";
  margin-bottom: 5px;
  font-size: 20px;
  color: #fff;
}

.greeting .member span {
  display: block;
  font-size: 15px;
  font-family: "UD Shin Go Conde90 L";
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
  color: #fff;
}

.greeting .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5b3ba;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.greeting .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.greeting  .member .career {
  width: 100%;
  padding: 10px 0;
  text-align: left;
}

.greeting  .member .career ul {
  padding: 0;
  list-style: none;
}

.greeting  .member .career li {
  font-size: 14px;
  color: #F8F9FB;
  padding: 2px 0 0;
}

@media (max-width: 1024px) {
  .greeting {
    background-attachment: scroll;
  }
}

@media (max-width: 769px) {
  .greeting p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .greeting p {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# 当院の特徴
--------------------------------------------------------------*/
.constructions {
  background: linear-gradient(to top, rgba(231, 236, 196, 0.9), rgba(110, 190, 227, 0.9));
}
.constructions article {
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.constructions .post-img {
  max-height: 280px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.constructions .title {
  font-family: "UD Shin Go Medium";
  font-size: 24px;
  font-weight: 700;
  color: #3088A5;
  padding: 0;
  margin: 0 0 20px 0;
}

.constructions p {
  font-family: "UD Shin Go Regular";
  line-height: 24px;
  margin: 0;
}

.constructions .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
# 施設のご案内
--------------------------------------------------------------*/
.facility .ph-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.facility .ph-item .post-img img {
  transition: 0.5s;
}

.facility .ph-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #FC8A50;
  color: #fff;
  text-transform: uppercase;
  font-family: "Hiragino Maru Gothic W4 JIS2004";
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}
.facility .ph-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

/*--------------------------------------------------------------
# 交通のご案内
--------------------------------------------------------------*/
#access {
  padding: 60px 0;
  background: #E3EFF4;  
}

#access .map iframe {
  width: 100%;
  height: 380px;
  outline: none;
}
#access .info {
  margin-top: 20px;
}
#access .info h4 {
  font-size: 20px;
  font-family: "UD Shin Go Regular";
  margin-bottom: 20px;
}
#access .info h4 i {
  font-size: 20px;
  margin-right: 5px;
  color: #007bff;
}

#access .info i {
  font-size: 18px;
  color: #F72A3E;
  line-height: 24px;
}

#access .info p {
  line-height: 24px;
  font-family: "UD Shin Go Regular";
  font-size: 16px;
  margin-bottom: 10px;
}

#access iframe {
  width: 100%;
  height: 380px;
  border: none;
  overflow: hidden;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
  font-size: 48px;
  display: block;
  color: #68A4C4;
}

.facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills {
  padding: 60px 0;
}

.skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

.skills .progress .skill {
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

.skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: 0.9s;
}

/*--------------------------------------------------------------
# Tetstimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fbfcfd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #68A4C4;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #68A4C4;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  padding-bottom: 10px;
}

.service-details .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.service-details .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.service-details .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.service-details .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.service-details .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.service-details .card-title a {
  color: #1e4356;
  transition: 0.3s;
}

.service-details .card-text {
  color: #5e5e5e;
}

.service-details .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.service-details .read-more a:hover {
  color: #68A4C4;
}

.service-details .card:hover img {
  transform: scale(1.1);
}

.service-details .card:hover .card-body {
  border-color: #68A4C4;
}

.service-details .card:hover .card-body .card-title a {
  color: #68A4C4;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #68A4C4;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #68A4C4;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #1e4356;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #68A4C4;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #68A4C4;
}

.pricing .featured .get-started-btn:hover {
  background: #85b6cf;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding-bottom: 30px;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(30, 67, 86, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 12px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #68A4C4;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #68A4C4;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

.team .member:hover .social a,
.team .member:hover .social i {
  line-height: 0;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 30px;
}

.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
}

.contact .info-box i {
  font-size: 32px;
  color: #68A4C4;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #a2cce3;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  margin-bottom: 30px;
}

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

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #68A4C4;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #68A4C4;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #8dbad2;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #A99179;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: linear-gradient(to top, rgba(40, 71, 124), rgba(88, 133, 204));

  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  font-family: "Hiragino Maru Gothic W4 JIS2004";
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #a2cce3;
  font-weight: 600;
}
#footer .footer-top .footer-info img {
  max-width: 360px;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  font-family: "Shin Maru Go Regular";
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}
#footer .footer-top .footer-info p.tel {
  font-size: 18px;
  font-family: "Shin Maru Go Regular";
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #A36D47;
}

#footer .footer-top table th {
  border: 1px solid #2EB7E5;
  padding: 10px 6px;
  font-family: "Hiragino Maru Gothic W4 JIS2004";
  font-size: 16px;
  color: #3088A5;
  text-align: center;
  background: #F7E6EC;
}
#footer .footer-top table td {
  padding: 12px 6px;
  border: 1px solid #2EB7E5;
  text-align: center;
  font-size: 16px;
  color: #774234;
  width: 13%;
  background: #ffffff;
}
#footer .footer-top table td i {
  color: #2EB7E5;
  font-size: 18px;
}
#footer .footer-top table td.hour {
  font-size: 16px;
  font-family: "Hiragino Maru Gothic W4 JIS2004";
  color: #3088A5;
  width: 22%;
  line-height: 1.3;
  white-space: nowrap;
}
#footer .footer-top table td.hour span {
  font-size: 14px;
  font-family: "Hiragino Maru Gothic W4 JIS2004";
  color: #3088A5;
  width: 22%;
  line-height: 1.3;
  white-space: nowrap;
}

#footer .footer-top p {
  font-size: 14px;
  font-family: "Shin Maru Go Regular";
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  font-family: "UD Shin Go Conde90 L";
  color: #fff;
}
@media (max-width: 767px) {
  #footer .footer-top table td i {
    font-size: 16px;
  }
  #footer .footer-top table td.hour {
    padding: 12px 4px;
    font-size: 15px;
  }
  #footer .footer-top table td.hour span {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  #footer .footer-top table td i {
    font-size: 14px;
  }
  #footer .footer-top table td.hour {
    padding: 12px 4px;
    font-size: 13px;
  }
  #footer .footer-top table td.hour span {
    font-size: 12px;
  }
}
