
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Kosugi Maru', sans-serif;
  color: #444444;
}

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

a:hover {
  color: #ff724a;
  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: #FF2B23;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #FF5C56;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #7F250C;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 13px 0;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(162, 127, 65, 0.85);
  padding: 13px 0;
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}
#header .logo a {
  color: #5B1C2F;
}
#header .logo img {
  max-height: 80px;
}
@media (max-width: 768px) {
  #header .logo img {
    max-height: 65px;
  }
}
@media (max-width: 576px) {
  #header .logo img {
    max-height: 65px;
  }
}

/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 8px 12px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 20px;
  line-height: 0;
  margin-right: 4px;
  color: #004182;
  display: inline-block;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #E8A745;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 0;
  margin-left: 0;
}
.navbar .getstarted, .navbar .getstarted img {
  max-height: 60px;
}
.navbar > ul > li > .getstarted:before {
  visibility: hidden;
}

.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;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}
.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: #ff4a17;
}
.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: #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-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(53, 10, 0, 0.8);
  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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #454545;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ff4a17;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  text-align: left;
  display: inline-block;
}
.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;
  display: inline-block;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ff4a17;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.navbar > ul > li > img {
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/top-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero:before {
  content: "";
  background: rgba(246, 245, 234, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}
#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}
#hero .btn-get-started {
  margin-top: 50px;
  display: inline-block;
}
#hero .btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

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

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

.section-bg-gray {
  background-color: #eeeeee;
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title .layer-left {
  /* ボックス配置指定 */
  position: absolute;
  top: -35px;
  left: 50px;
}

.section-title .layer-left img.illust-1 {
  /* ボックス配置指定 */
   max-height: 172px;
}

.section-title .layer-left img.illust-3 {
  /* ボックス配置指定 */
   max-height: 180px;
}

.section-title .layer-left img.illust-5 {
  /* ボックス配置指定 */
   max-height: 194px;
}

.section-title .layer-right {
  /* ボックス配置指定 */
  position: absolute;
  top: -35px;
  right: 50px;
}

.section-title .layer-right img.illust-2 {
  /* ボックス配置指定 */
   max-height: 161px;
}

.section-title .layer-right img.illust-4 {
  /* ボックス配置指定 */
   max-height: 217px;
}

.section-title .layer-right img.illust-6 {
  /* ボックス配置指定 */
   max-height: 205px;
}

@media (max-width: 767px) {
  .section-title .layer-left{
   top: 0px;
   left: 0;
  }
  .section-title .layer-left img {
   width: 70%;
  }
  .section-title .layer-right{
   top: 0px;
   right: 0;
  }
  .section-title .layer-right img {
   width: 70%;
  }
}

@media (max-width: 576px) {
  .section-title .layer-left {
   display:none
  }
  .section-title .layer-right {
   display:none
  }
}

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

.section-title h2 {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  color: #350A00;
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .about-box {
  background: #F8F5F1;
  border: 3px solid #E0C7A3;
  border-radius: 16px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 40px 30px 40px;
}
.about .about-box h2 {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-bottom: 5px;
  position: relative;
  color: #350A00;
}
.about .about-box h2 img {
  margin-left: 10px;
  padding-bottom: 10px;
  max-height: 85px;
}
.about .about-box p {
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 10px;
}
.about .member {
  padding: 5px;
  text-align: center;
}

.about .member .pic {
  overflow: hidden;
  width: 110px;
  border-radius: 50%;
  border: 3px solid #E0C7A3;
  margin: 0 auto 20px auto;
}

.about .member h4 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #454545;
}

.about .member span {
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
  color: #778899;
}

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

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

.about .about-box .career {
  padding: 10px;
  margin-bottom: 15px;
}
.about .about-box .career h4 {
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
  padding: 8px;
  text-align: center;
  margin-bottom: 20px;
}
.about .about-box .career p {
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.6;
}
.about .about-box .career ul {
  list-style: none;
  padding: 0;
}
.about .about-box .career ul li {
  font-size: 16px;
  padding-bottom: 3px;
  padding-left: 16px;
  text-align: left;
}
.about .content {
  font-size: 18px;
}
.about .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #263d4d;
}
.about .content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 769px) {
  .greeting h4 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .greeting p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .about .about-box {
    padding: 40px 20px 30px 20px;
  }
  .about .about-box p {
    font-size: 16px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0 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;
  }
}

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

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0 60px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta .icon-box {
  padding: 50px 20px 0 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center;
  height: 300px;
  position: relative;
  background: #FFF6B5;
  border-radius: 16px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.cta .icon {
  position: absolute;
  top: -30px;
  left: calc(50% - 120px);
  transition: 0.2s;
  border-radius: 50px;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 240px;
  height: 65px;
  background: #ff5821;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.cta .title {
  font-weight: 700;
  margin-top: 5px;
  font-size: 26px;
  text-transform: uppercase;
}
.cta .title a {
  color: #560F1C;
}
.cta .icon-box:hover .icon {
  background: #fff;
  border: 2px solid #ff5821;
}
.cta .icon-box:hover .icon i {
  color: #ff5821;
}
.cta .icon-box:hover .title a {
  color: #ff5821;
}
.cta .description {
  margin-top: 20px;
}
.cta .description p {
  line-height: 28px;
  font-size: 18px;
  text-align: left;
}
.cta p {
  line-height: 26px;
  font-size: 16px;
  text-align: left;
}
.cta .content h4 {
  max-width: 85%;
  padding: 6px 12px;
  background: #319E5A;
  transition: all 0.3s;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.cta .content p {
  font-size: 17px;
  line-height: 1.6;
  color: #454545;
  text-align: center;
  margin-bottom: 40px;
}
.cta .content table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #A36D47;
}

.cta .content table th {
  border: 1px solid #A36D47;
  padding: 6px 0;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 20px;
  color: #fff;
  text-align: center;
  background: #7A5135;
}
.cta .content table td {
  font-family: 'Kosugi Maru', sans-serif;
  padding: 20px 0;
  border: 1px solid #A36D47;
  text-align: center;
  font-size: 28px;
  color: #774234;
  width: 13%;
  background: #ffffff;
}
.cta .content table td span {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 15px;
  white-space: nowrap;
}
.cta .content table td.hour {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 18px;
  width: 22%;
  line-height: 1.3;
  white-space: nowrap;
}
.cta .content ul {
  list-style: none;
  padding: 0;
}
.cta .content ul li {
  font-size: 18px;
  color: #774234;
  padding-bottom: 3px;
  padding-left: 6px;
}
@media (max-width: 991px) {
  .cta .description p {
    line-height: 26px;
    font-size: 16px;
    text-align: left;
  }
  .cta .icon-box {
    height: 330px;
  }
}
@media screen and (max-width:576px) {
  .cta .content table th {
  font-size: 16px;
  }
  .cta .content table td {
  font-size: 18px;
  }
  .cta .content table td.hour {
  font-size: 16px;
  padding: 20px 6px;
  white-space: nowrap;
  }
  .cta .content table td span {
  font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  position: relative;
}
.team .container {
  position: relative;
  z-index: 10;
}
.team .member {
  margin-bottom: 80px;
  position: relative;
}
.team .member .pic {
  overflow: hidden;
}
.team .member .member-info {
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  background: linear-gradient(to right, #ffffff 50%, rgba(255,255,255,0.6) 100%);
  padding: 20px 15px;
  color: #15222b;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.5s;
}
.team .member h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #454545;
  position: relative;
  padding-bottom: 10px;
}
.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #AF813B;
  bottom: 0;
  left: 0;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Addition
--------------------------------------------------------------*/
.addition {
  padding: 30px 0 60px 0;
}
.addition .icon-box {
  padding: 40px 20px 30px 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  height: 620px;
  position: relative;
  background: #F8F5F1;
  border-radius: 16px;
  border: 1px solid #E0C7A3;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.addition .icon-box .icon {
  text-align: center;
  padding-bottom: 5px;
}

.addition .icon-box .icon h4 {
  color: #350A00;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1em;
}

.addition .icon-box .icon h4:before,
.addition .icon-box .icon h4:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #444;
  display: inline-block;
}

.addition .icon-box .icon h4:before {
  margin: 0 10px 10px 0;
}

.addition .icon-box .icon h4:after {
  margin: 0 0 10px 10px;
} 
.addition .icon-box .description {
  margin-top: 10px;
}
.addition .icon-box .description p {
  line-height: 28px;
  font-size: 18px;
  text-align: left;
}
.addition .icon-box .description p span {
  font-size: 16px;
}
.addition .icon-box .description ul {
  list-style: none;
  padding: 0;
}
.addition .icon-box .description ul li {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  padding-bottom: 5px;
  padding-left: 6px;
}
.addition .icon-box p {
  line-height: 26px;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 991px) {
  .addition {
    padding: 0;
  }
  .addition .icon-box {
    height: 740px;
  }
  .addition .icon-box .icon h4 {
    color: #350A00;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.05em;
  }

  .addition .icon-box .icon h4:before,
  .addition .icon-box .icon h4:after {
    content: "";
    width: 20px;
    height: 2px;
    background: #444;
    display: inline-block;
  }

  .addition .icon-box .icon h4:before {
    margin: 0 10px 10px 0;
  }

  .addition .icon-box .icon h4:after {
    margin: 0 0 10px 10px;
  }
  .addition .icon-box .description p {
    line-height: 22px;
    font-size: 16px;
    text-align: left;
  }
  .addition .icon-box .description p span {
    font-size: 14px;
  }
  .addition .icon-box .description ul li {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #ff4a17;
  border-radius: 50%;
  padding: 8px;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  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;
}
.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: #ff4a17;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #ff4a17;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #ff5e31;
}
@-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: #F9E6CC;
  min-height: 40px;
  margin-top: 105px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: #350A00;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #263d4d;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 115px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
@media (max-width: 1098px) {
  .breadcrumbs {
    margin-top: 85px;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin-top: 90px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #3c0300;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 13px;
}
#footer .footer-top {
  background: #DDB987;
  border-bottom: 1px solid #1d303c;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
  text-align: center;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
#footer .footer-top .footer-info img {
  max-height: 95px;
}
#footer .footer-top .footer-info h4 {
  font-size: 20px;
  color: #3C0300;
  margin-bottom: 10px;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
#footer .footer-top .footer-info p.tel {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #C10020;
}
#footer .footer-top .footer-info i {
  font-size: 30px;
  line-height: 1;
  margin-right: 4px;
  color: #147C00;
}
#footer .copyright {
  text-align: center;
  padding-top: 20px;
}
