@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #524647;
  background-image: url("../img/bg/bg-wh-canvas.png");
  background-repeat: repeat;
}
a {
  color: #D879B7;
}
a:hover {
  color: #E19DC9;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Noto Sans JP', sans-serif;
}
/*--------------------------------------------------------------
# Color
--------------------------------------------------------------*/
.sakura {
  color: #cc6daa;
}
.sora {
  color: #6FABDF;
}
.l-brown {
  color: #8f7779;
}
.kiiro {
  color: #FCC83E;
}
/*--------------------------------------------------------------
# button
--------------------------------------------------------------*/
a, a:focus {
  outline: none;
}
button, input, input:focus {
  outline: none;
}
input::-moz-focus-inner, button::-moz-focus-inner {
  border: none;
}
.btn {
  padding: 0.6em 0.4em 0.6em 0.4em;
}
/* sakura　*/
.btn-sakura {
  color: #fff;
  background-color: #cc6daa;
  border-color: #cc6daa;
  transition: .3s;
}
.btn-sakura:hover {
  color: #F4BEE1;
  background-color: #B0528F;
  border-color: #B0528F;
}
.btn-sakura:focus, .btn-sakura.focus {
  color: #F4BEE1;
  background-color: #B0528F;
  border-color: #B0528F;
  box-shadow: 0 0 0 0.2rem rgba(160, 86, 134, 0.50);
}
/* sora　*/
.btn-sora {
  color: #fff;
  background-color: #6FABDF;
  border-color: #6FABDF;
  transition: .3s;
}
.btn-sora:hover {
  color: #DDEFFE;
  background-color: #5D92BE;
  border-color: #5D92BE;
}
.btn-sora:focus, .btn-sora.focus {
  color: #DDEFFE;
  background-color: #5D92BE;
  border-color: #5D92BE;
  box-shadow: 0 0 0 0.2rem rgba(93, 146, 190, 0.50);
}
/* cha　　--invert　*/
.btn-cha {
  color: #fff;
  background-color: #A8888B;
  border-color: #A8888B;
  transition: .3s;
}
.btn-cha:hover {
  color: #8f7779;
  background-color: #F4D4D6;
  border-color: #F4D4D6;
}
.btn-cha:focus, .btn-cha.focus {
  color: #8f7779;
  background-color: #F4D4D6;
  border-color: #F4D4D6;
  box-shadow: 0 0 0 0.2rem rgba(116, 93, 94, 0.20);
}
/* kiiro　*/
.btn-ki {
  color: #fff;
  background-color: #FBD163;
  border-color: #FBD163;
  transition: .3s;
}
.btn-ki:hover {
  color: rgba(255, 255, 255, 0.80);
  background-color: #FCC83E;
  border-color: #FCC83E;
}
.btn-ki:focus, .btn-sora.focus {
  color: rgba(255, 255, 255, 0.80);
  background-color: #FCC83E;
  border-color: #FCC83E;
  box-shadow: 0 0 0 0.2rem rgba(93, 146, 190, 0.50);
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #B0528F;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}
.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  z-index: 997;
}
#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #524647;
  padding: 20px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #6FABDF;
  text-decoration: none;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #8f7779;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #6FABDF;
}
.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}


@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #B0528F;
  transition: 0.4s;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #6FABDF;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  padding: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #524647;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(82, 70, 71, 0.30);
  overflow: hidden;
  display: none;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(75vh - 114px);
  padding: 0;
  overflow: hidden;
}
#hero .carousel-item {
  width: 100%;
  height: calc(75vh - 114px);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .carousel-item::before {
  content: '';
  background-color: rgba(233, 199, 227, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#hero .carousel-content {
  text-align: left;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item, #hero .carousel-inner .active.carousel-item-left, #hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}
#hero .carousel-inner .active, #hero .carousel-inner .carousel-item-next.carousel-item-left, #hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 5.5s;
}
#hero .carousel-inner .carousel-item-next, #hero .carousel-inner .carousel-item-prev, #hero .carousel-inner .active.carousel-item-left, #hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-indicators li {
  cursor: pointer;
}
/*----------------------------
★ Hero Catch　→20200527削除
------------------------------*/

/*----------------------------
★ Hero Inner info
------------------------------*/
.inner-info {
  font-size: 0.9em;
  background-color: rgba(255, 255, 255, 0.80);
  position: absolute;
  width: 460px;
  right: 0;
  bottom: 20px;
  z-index: 2;
  padding: 1em;
  border-radius: 10px 0px 0px 10px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.contact-title {
  font-size: 1.15em;
  color: #8f7779;
  text-align: center;
  padding: 0.4em;
}
.contact-subject {
  padding-bottom: 0.4em;
}
/*-----　 診療　----*/
.items {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.80);
  text-align: center;
  margin-bottom: 0.8em;
}
.items .info-item:nth-child(odd) {
  width: 30%;
}
.items .info-item:nth-child(2) {
  width: 40%;
  border-left: 1px solid #CDCDCD;
  border-right: 1px solid #CDCDCD;
  padding-bottom: 0.8em;
}
.info-title {
  color: #fff;
  background-color: #DD80BC;
  text-align: center;
  padding: 0.5em 0.3em 0.3em 0.3em;
}
.info-body {
  padding-top: 0.5em;
}
.info-body .i-time {
  text-align: left;
  padding-left: 1.5em;
}
.info-body .i-time span {
  margin-right: 0.8em;
}
.info-body span {
  font-size: 80%;
}
/*-----　 相談　----*/
.info-contact {
  line-height: 1.3rem;
}
.contact-way {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.contact-tel {
  width: 50%;
}
.contact-tel .num-box {
  padding: 0;
}
.contact-tel i {
  color: #cc6daa;
  font-size: 1.6em;
  padding-right: 0.2em;
}
.call-num {
  color: #B0528F;
  font-size: 1.8em;
  font-weight: bold;
}
@media (max-width: 1366px) {
  .call-num {
    font-size: 1.5em;
  }
}
.contact-mail i {
  display: inline-block;
  font-size: 1.1em;
  padding-top: 0.15em;
  padding-right: 0.1em;
  vertical-align: bottom;
}
.contact-mail button {
  box-shadow: 0 3px 3px rgba(214, 215, 216, 0.8);
  padding: 0.8em;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0px;
}
.section-bg {
  background-color: rgba(184, 233, 242, 0.20);
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7em;
  letter-spacing: 0.05em;
  color: #8f7779;
}
.section-title p {
  margin-bottom: 0;
}
.section-title .section-icon img {
  width: 2.6em;
  margin-bottom: 0.3em;
}
/*--------------------------------------------------------------
# About Lists
--------------------------------------------------------------*/
#about-lists {}
.about-lists .row {
  overflow: hidden;
}
.about-lists .content-item {
  padding-top: 10px;
  border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
  margin: -1px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.about-lists .content-item .about-icon img {
  width: 18%;
  margin-bottom: 0.5em;
}
.about-lists .content-item h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3em;
  margin-top: auto;
}
.about-lists .content-item h4 a {
  color: #8f7779;
  transition: ease all 0.3s;
}
.about-lists .content-item h4 a:hover, .about-lists .content-item h4 a:focus {
  color: #E29AC9;
}
.about-lists .content-item p {
  color: #D2CECE;
  font-size: 14px;
  margin-top: auto;
  padding: 0;
}
/*--------------------------------------------------------------
# Gateway
--------------------------------------------------------------*/
#gateway {}
.gateway .container {
  margin-top: -50px;
}
.gateway-unit {
  background-color: #fff;
  box-shadow: 0 5px 5px 5px rgba(214, 215, 216, 0.6);
  padding: 15px;
  margin-bottom: 15px;
}
.gateway img {
  padding: 15px 0;
}
.gateway .gateway-content {
  padding: 30px;
}
.gateway .gateway-content h4 {
  color: #DD80BC;
}
.gateway .gateway-content button {}
/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
#news {}
.blogbox {
  height: 310px;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.blogbox dl.list {
  margin: 0 5px 0 0;
  padding: 15px;
  font-size: 1.2em;
}
.blogbox dl.list dt {
  color: #E29AC9;
  clear: left;
  float: left;
  font-weight: lighter;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  width: 8.5em;
  padding-left: 15px;
  padding-bottom: 0.3em;
  border-bottom: 1px dotted #E2CECF;
}
.blogbox dl.list dd {
  margin-bottom: 0.5em;
  margin-left: 8.5em;
  padding-bottom: 0.3em;
  border-bottom: 1px dotted #E2CECF;
}
.blogbox dl.list dd > a {
  color: #524647;
}
.blogbox dl.list dd > a:hover {
  color: #DD80BC;
}
.bnr-box {}
.bnr-box-inner {
  background-color: #fff;
  border-radius: 15px;
}
.bnr-box-inner img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bnr-box-inner img:hover {
  opacity: 0.7;
}
/*--------------------------------------------------------------
# Policy
--------------------------------------------------------------*/
#policy {}
.policy {
  padding: 15px 0;
}
.policy .image-inner {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  overflow: hidden;
}
.inner-catch {
  color: #774E52;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.9em;
  padding-top: 1em;
}
/*link*/
.link-box {
  text-align: center;
  padding-top: 20px;
}
.link-box > a {
  font-size: 1.3em;
  color: #B0528F;
}
.link-box > a:hover {
  color: #E29AC9;
}
.link-box i {
  padding-left: 0.4em;
}
.bar-link {
  position: relative;
  display: inline-block;
  transition: .3s;
  padding: 0.5em;
}
.bar-link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #E29AC9;
  transition: .3s;
  transform: translateX(-50%);
}
.bar-link:hover::after {
  width: 100%;
}
/*--------------------------------------------------------------
# Services （関連施設）
--------------------------------------------------------------*/
.services {
  padding-bottom: 60px;
}
.services .icon-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid rgba(143, 119, 121, 0.50);
  border-radius: 0.5rem;
  padding: 20px 20px 25px 20px;
  text-align: center;
}
.services .icon-ph img {
  width: 140px;
  height: 140px;
  margin-bottom: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.services .title {
  font-size: 1.6em;
  position: relative;
  padding-top: 10px;
}
.services .title a {
  transition: 0.3s;
}
.services .kiiro a {
  color: #FCC83E;
}
.services .title a:hover {
  opacity: 0.5;
}
.services .description {
  color: #524647;
  text-align: left;
  line-height: 1.8em;
  font-size: 1em;
  padding: 5px 15px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #524647;
  padding: 0 0 30px 0;
  color: #524647;
  font-size: 14px;
}
#footer .footer-top {
  background-color: #fff;
  border-top: 4px solid rgba(143, 119, 121, 0.10);
  padding: 60px 0 30px 0;
  width: 100vw;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
.hospital-img {
  padding-right: 50px;
}
.hospital-info {
  font-size: 1.1em;
  letter-spacing: 0.05em;
}
.hospital-info img {
  padding: 20px 20px 10px 0px;
  width: 70%;
  height: auto;
}
.hospital-info .addr {
  line-height: 1em;
}
.hospital-info .telfax {
  color: #DD80BC;
  font-family: 'Roboto', sans-serif;
  font-size: 1.3em;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}
.hospital-info .telfax span {
  color: #524647;
  font-size: 80%;
  padding-right: 0.5em;
}
#footer .footer-top h4, #footer .footer-top h4 a {
  color: #659FD2;
  font-size: 14px;
  font-weight: normal;
}
#footer .footer-top .footer-links {
  padding-top: 2em;
  padding-bottom: 3em;
  border-left: dotted 1px rgba(143, 119, 121, 0.30);
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0px 0px 20px 0px;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  font-size: 12px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #524647;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover, #footer .footer-top h4 a:hover {
  color: #9eccf4;
}
#footer .footer-top .footer-links .in-list {
  padding: 0.3em 0em 0.5em 1.3em;
  line-height: 0.8em;
}
#footer .footer-top .footer-links .in-list li::before {
  content: '●';
  font-size: 0.8em;
  color: #9eccf4;
  padding-right: 0.5em;
}
#footer .copyright {
  color: #FEFAEF;
  text-align: center;
  padding-top: 30px;
}