@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  /*フォントのベース*/ }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #404040;
  font-size: 1.6rem;
  /*フォントのベース*/
  line-height: 1.6em;
  /*行間のベース*/ }

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

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

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif; }

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important; } }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); }
  #header .logo {
    font-size: 2.8rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase; }
    #header .logo a {
      color: #e7cb32; }
      #header .logo a span {
        color: #FF87A1; }
    #header .logo img {
      max-height: 40px; }

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin-left: 20px;
  border-left: 1px solid white; }
  .header-social-links a {
    color: white;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    padding-left: 20px; }
    .header-social-links a i {
      line-height: 0; }
    .header-social-links a:hover {
      color: #FF87A1; }
  @media (max-width: 768px) {
    .header-social-links {
      padding: 0 15px 0 0;
      border-left: 0; } }

/*--------------------------------------------------------------
# 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: "Noto Serif JP", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF87A1;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s; }
    .navbar a i,
    .navbar a:focus i {
      font-size: 1.2rem;
      line-height: 0;
      margin-left: 5px; }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #d4002e; }
  .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-top: 2px solid #FF87A1; }
    .navbar .dropdown ul li {
      min-width: 200px; }
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 1.4rem;
      font-weight: 500;
      text-transform: none;
      color: #e7cb32; }
      .navbar .dropdown ul a i {
        font-size: 1.2rem; }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover > a {
      color: #FF87A1; }
  .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: #FF87A1;
  font-size: 2.8rem;
  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(255, 84, 121, 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: #fff;
    overflow-y: auto;
    transition: 0.3s; }
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 1.5rem;
    color: #FF87A1; }
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: #d4002e; }
  .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: 1.2rem; }
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover > a {
      color: #d4002e; }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 84, 121, 0.8);
  overflow: hidden;
  position: relative; }
  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; }
  #hero .carousel-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    top: 70px;
    left: 55px;
    right: 55px; }
  #hero .carousel-content {
    background: rgba(228, 197, 27, 0.7);
    padding: 20px;
    color: #fff;
    border-top: 5px solid #FF87A1; }
    #hero .carousel-content h2 {
      color: #fff;
      margin-bottom: 20px;
      font-size: 2.8rem;
      font-weight: 700; }
  #hero .btn-get-started {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    animation-delay: 0.8s;
    border: 2px solid #FF87A1; }
    #hero .btn-get-started:hover {
      background: #FF87A1;
      color: #fff;
      text-decoration: none; }
  #hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top; }
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    opacity: 0; }
  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next.carousel-item-start,
  #hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s; }
  #hero .carousel-inner .carousel-item-next,
  #hero .carousel-inner .carousel-item-prev,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0); }
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    background: none;
    font-size: 3rem;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(108, 117, 125, 0.4);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.6);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center; }
    #hero .carousel-control-next-icon:hover,
    #hero .carousel-control-prev-icon:hover {
      background: rgba(255, 255, 255, 0.6);
      color: rgba(255, 255, 255, 0.8); }
  #hero .carousel-indicators li {
    cursor: pointer;
    background: #6c757d;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s; }
    #hero .carousel-indicators li.active {
      opacity: 1;
      background: #FF87A1; }
  #hero .catch {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fff;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.7)); }
    #hero .catch h2 {
      font-size: 3rem;
      line-height: 1.4em;
      font-weight: 700;
      padding-bottom: 10px; }
      @media (min-width: 1200px) {
        #hero .catch h2 {
          font-size: 4rem; } }
      @media (min-width: 992px) {
        #hero .catch h2 {
          font-size: 3.4rem; } }
      @media (max-width: 575px) {
        #hero .catch h2 .sp_dn {
          display: none; } }
    #hero .catch h3 {
      font-size: 1.6rem;
      line-height: 1.4em;
      font-weight: 700; }
      @media (min-width: 1200px) {
        #hero .catch h3 {
          font-size: 2rem; } }
      @media (min-width: 992px) {
        #hero .catch h3 {
          font-weight: 700; } }
  @media (min-width: 1024px) {
    #hero .carousel-content {
      width: 60%; }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
      width: 5%; } }
  @media (max-width: 992px) {
    #hero .carousel-container {
      top: 58px; }
    #hero .carousel-content h2 {
      margin-bottom: 15px;
      font-size: 2.2rem; }
    #hero .carousel-content p {
      font-size: 1.5rem; } }
  @media (max-height: 500px) {
    #hero {
      height: 120vh; } }

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

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

.section-title {
  text-align: center;
  padding-bottom: 30px; }
  .section-title h2 {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.4em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative; }
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #FF87A1;
    bottom: 0;
    left: calc(50% - 25px); }
  .section-title p {
    margin-bottom: 0; }

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #FF87A1;
  min-height: 40px;
  margin-top: 72px; }
  .breadcrumbs h2 {
    font-size: 2.6rem;
    font-weight: 300;
    color: #fff; }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff; }
    .breadcrumbs ol a {
      color: #fff; }
    .breadcrumbs ol li + li {
      padding-left: 10px; }
    .breadcrumbs ol li + li::before {
      display: inline-block;
      padding-right: 10px;
      color: #fff;
      content: "/"; }
  @media (max-width: 991px) {
    .breadcrumbs {
      margin-top: 58px; }
      .breadcrumbs .d-flex {
        display: block !important; }
      .breadcrumbs ol {
        display: block; }
        .breadcrumbs ol li {
          display: inline-block; } }

/*--------------------------------------------------------------
# TOP
--------------------------------------------------------------*/
.top_sec01 ul {
  list-style: none;
  padding: 0; }
  .top_sec01 ul li {
    padding: 1em;
    border-bottom: dotted 1px #ddd;
    margin: 0; }
    .top_sec01 ul li:first-child {
      border-top: solid 1px #ddd; }
    .top_sec01 ul li:last-child {
      border-bottom: solid 1px #ddd; }
    .top_sec01 ul li dl {
      display: flex;
      margin: 0; }
      .top_sec01 ul li dl dt {
        padding-right: 1.5em; }

.modaal-container .modal_ttl {
  font-size: 2rem;
  line-height: 1.6em;
  font-weight: 700;
  padding-bottom: .5em;
  margin-bottom: .5em;
  border-bottom: solid 1px #FF87A1;
  color: #FF87A1; }

.top_sec02 .t_scroll {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1em; }
  .top_sec02 .t_scroll table {
    border-collapse: collapse; }
    .top_sec02 .t_scroll table th,
    .top_sec02 .t_scroll table td {
      border: solid 1px #ccc;
      white-space: nowrap;
      padding: 1em 1.5em;
      font-size: 1.6rem;
      line-height: 1.6em;
      background-color: #FFF;
      width: auto;
      text-align: center; }
      @media (min-width: 576px) {
        .top_sec02 .t_scroll table th,
        .top_sec02 .t_scroll table td {
          font-size: 1.8rem; } }
      @media (min-width: 992px) {
        .top_sec02 .t_scroll table th,
        .top_sec02 .t_scroll table td {
          font-size: 2.2rem; } }
    .top_sec02 .t_scroll table td span {
      display: block;
      font-size: 85%; }
  .top_sec02 .t_scroll .txt_red {
    color: red; }
  .top_sec02 .t_scroll::-webkit-scrollbar {
    height: 8px;
    /* スクロールバーの高さ */ }
  .top_sec02 .t_scroll::-webkit-scrollbar-thumb {
    background: #aaa;
    /* スクロールバーの色 */ }
  .top_sec02 .t_scroll::-webkit-scrollbar-track {
    background: #ccc;
    /* スクロールバーの背景色 */ }

.top_sec03 {
  padding-bottom: 1px; }
  .top_sec03 .access {
    width: 100%;
    position: relative;
    padding-top: 56.25%; }
    @media (min-width: 769px) {
      .top_sec03 .access {
        padding-top: 30%; } }
    .top_sec03 .access iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about_sec01 .t_scroll {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1em; }
  .about_sec01 .t_scroll table {
    border-collapse: collapse; }
    .about_sec01 .t_scroll table th,
    .about_sec01 .t_scroll table td {
      border: solid 1px #ccc;
      white-space: nowrap;
      padding: 1em 1.5em;
      font-size: 1.6rem;
      line-height: 1.6em;
      background-color: #FFF;
      width: auto;
      text-align: center; }
      @media (min-width: 576px) {
        .about_sec01 .t_scroll table th,
        .about_sec01 .t_scroll table td {
          font-size: 1.8rem; } }
      @media (min-width: 992px) {
        .about_sec01 .t_scroll table th,
        .about_sec01 .t_scroll table td {
          font-size: 2.2rem; } }
    .about_sec01 .t_scroll table td span {
      display: block;
      font-size: 85%; }
  .about_sec01 .t_scroll .txt_red {
    color: red; }
  .about_sec01 .t_scroll::-webkit-scrollbar {
    height: 8px;
    /* スクロールバーの高さ */ }
  .about_sec01 .t_scroll::-webkit-scrollbar-thumb {
    background: #aaa;
    /* スクロールバーの色 */ }
  .about_sec01 .t_scroll::-webkit-scrollbar-track {
    background: #ccc;
    /* スクロールバーの背景色 */ }

.about_sec02 .mdtt {
  background-color: #fff;
  border: solid 1px #6c757d; }
  .about_sec02 .mdtt h3 {
    position: relative;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    padding: 1em 0 .4em;
    display: inline-block;
    margin: 0 auto; }
    .about_sec02 .mdtt h3:before {
      content: '';
      position: absolute;
      bottom: -5px;
      display: inline-block;
      width: 60px;
      height: 2px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      background-color: #404040;
      border-radius: 2px; }
  .about_sec02 .mdtt dl {
    padding: 1.5em 2em 1em; }
    .about_sec02 .mdtt dl dt {
      font-size: 1.8rem;
      font-weight: 700;
      padding: .5em 0; }
    .about_sec02 .mdtt dl dd {
      padding: 0 0 .5em; }
      .about_sec02 .mdtt dl dd .t_scroll {
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1em; }
        .about_sec02 .mdtt dl dd .t_scroll table {
          border-collapse: collapse; }
          .about_sec02 .mdtt dl dd .t_scroll table th,
          .about_sec02 .mdtt dl dd .t_scroll table td {
            border: solid 1px #ccc;
            white-space: nowrap;
            padding: .7em 1em;
            font-size: 1.4rem;
            line-height: 1.4em;
            background-color: #FFF;
            width: auto;
            text-align: center; }
        .about_sec02 .mdtt dl dd .t_scroll::-webkit-scrollbar {
          height: 8px;
          /* スクロールバーの高さ */ }
        .about_sec02 .mdtt dl dd .t_scroll::-webkit-scrollbar-thumb {
          background: #aaa;
          /* スクロールバーの色 */ }
        .about_sec02 .mdtt dl dd .t_scroll::-webkit-scrollbar-track {
          background: #ccc;
          /* スクロールバーの背景色 */ }

/*--------------------------------------------------------------
# Clinic
--------------------------------------------------------------*/
.clinic_sec01 h3 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 1em; }
.clinic_sec01 h4 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 1em; }

/*--------------------------------------------------------------
# Device
--------------------------------------------------------------*/
.device_sec01 h3, .device_sec02 h3, .device_sec03 h3, .device_sec04 h3, .device_sec05 h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6em;
  padding-bottom: 1.5em; }
.device_sec01 h4, .device_sec02 h4, .device_sec03 h4, .device_sec04 h4, .device_sec05 h4 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: .6em; }
.device_sec01 ul, .device_sec02 ul, .device_sec03 ul, .device_sec04 ul, .device_sec05 ul {
  list-style: none;
  padding: 0; }
  .device_sec01 ul li, .device_sec02 ul li, .device_sec03 ul li, .device_sec04 ul li, .device_sec05 ul li {
    padding-bottom: .8em;
    padding-left: 2em;
    text-indent: -1em; }

/*--------------------------------------------------------------
# Access
--------------------------------------------------------------*/
.access_sec01 .access {
  width: 100%;
  position: relative;
  padding-top: 56.25%; }
  @media (min-width: 769px) {
    .access_sec01 .access {
      padding-top: 30%; } }
  .access_sec01 .access iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
.access_sec01 h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6em; }

.access_sec02 h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6em;
  padding-bottom: .3em;
  color: #FF87A1; }
  .access_sec02 h3 i {
    font-size: 3.6rem; }
.access_sec02 .t_scroll {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1em; }
  .access_sec02 .t_scroll table {
    border-collapse: collapse; }
    .access_sec02 .t_scroll table th,
    .access_sec02 .t_scroll table td {
      border: solid 1px #ccc;
      white-space: nowrap;
      padding: 1em 1.5em;
      font-size: 1.6rem;
      line-height: 1.6em;
      background-color: #FFF;
      width: auto;
      text-align: center; }
      @media (min-width: 576px) {
        .access_sec02 .t_scroll table th,
        .access_sec02 .t_scroll table td {
          font-size: 1.8rem; } }
      @media (min-width: 992px) {
        .access_sec02 .t_scroll table th,
        .access_sec02 .t_scroll table td {
          font-size: 2.2rem; } }
    .access_sec02 .t_scroll table td span {
      display: block;
      font-size: 85%; }
  .access_sec02 .t_scroll .txt_red {
    color: red; }
  .access_sec02 .t_scroll::-webkit-scrollbar {
    height: 8px;
    /* スクロールバーの高さ */ }
  .access_sec02 .t_scroll::-webkit-scrollbar-thumb {
    background: #aaa;
    /* スクロールバーの色 */ }
  .access_sec02 .t_scroll::-webkit-scrollbar-track {
    background: #ccc;
    /* スクロールバーの背景色 */ }

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0; }
  .blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
    .blog .entry .entry-img {
      max-height: 440px;
      margin: -30px -30px 20px -30px;
      overflow: hidden; }
    .blog .entry .entry-title {
      font-size: 2.8rem;
      font-weight: bold;
      padding: 0;
      margin: 0 0 20px 0; }
      .blog .entry .entry-title a {
        color: #e7cb32;
        transition: 0.3s; }
        .blog .entry .entry-title a:hover {
          color: #FF87A1; }
    .blog .entry .entry-meta {
      margin-bottom: 15px;
      color: #fcf9e9; }
      .blog .entry .entry-meta ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        align-items: center;
        padding: 0;
        margin: 0; }
        .blog .entry .entry-meta ul li + li {
          padding-left: 20px; }
      .blog .entry .entry-meta i {
        font-size: 1.6rem;
        margin-right: 8px;
        line-height: 0; }
      .blog .entry .entry-meta a {
        color: #737373;
        font-size: 1.4rem;
        display: inline-block;
        line-height: 1; }
    .blog .entry .entry-content p {
      line-height: 24px; }
    .blog .entry .entry-content .read-more {
      text-align-last: right; }
      .blog .entry .entry-content .read-more a {
        display: inline-block;
        background: #FF87A1;
        color: #fff;
        padding: 6px 20px;
        transition: 0.3s;
        font-size: 1.4rem;
        border-radius: 4px; }
        .blog .entry .entry-content .read-more a:hover {
          background: #ffa1b5; }
    .blog .entry .entry-content h3 {
      font-size: 2.2rem;
      margin-top: 30px;
      font-weight: bold; }
    .blog .entry .entry-content blockquote {
      overflow: hidden;
      background-color: #fafafa;
      padding: 60px;
      position: relative;
      text-align: center;
      margin: 20px 0; }
      .blog .entry .entry-content blockquote p {
        color: #404040;
        line-height: 1.6;
        margin-bottom: 0;
        font-style: italic;
        font-weight: 500;
        font-size: 2.2rem; }
      .blog .entry .entry-content blockquote::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: #e7cb32;
        margin-top: 20px;
        margin-bottom: 20px; }
    .blog .entry .entry-footer {
      padding-top: 10px;
      border-top: 1px solid #e6e6e6; }
      .blog .entry .entry-footer i {
        color: #f7eebb;
        display: inline; }
      .blog .entry .entry-footer a {
        color: #ead149;
        transition: 0.3s; }
        .blog .entry .entry-footer a:hover {
          color: #FF87A1; }
      .blog .entry .entry-footer .cats {
        list-style: none;
        display: inline;
        padding: 0 20px 0 0;
        font-size: 1.4rem; }
        .blog .entry .entry-footer .cats li {
          display: inline-block; }
      .blog .entry .entry-footer .tags {
        list-style: none;
        display: inline;
        padding: 0;
        font-size: 1.4rem; }
        .blog .entry .entry-footer .tags li {
          display: inline-block; }
        .blog .entry .entry-footer .tags li + li::before {
          padding-right: 6px;
          color: #6c757d;
          content: ","; }
      .blog .entry .entry-footer .share {
        font-size: 1.6rem; }
        .blog .entry .entry-footer .share i {
          padding-left: 5px; }
  .blog .entry-single {
    margin-bottom: 30px; }
  .blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
    .blog .blog-author img {
      width: 120px;
      margin-right: 20px; }
    .blog .blog-author h4 {
      font-weight: 600;
      font-size: 2.2rem;
      margin-bottom: 0px;
      padding: 0;
      color: #e7cb32; }
    .blog .blog-author .social-links {
      margin: 0 10px 10px 0; }
      .blog .blog-author .social-links a {
        color: rgba(231, 203, 50, 0.5);
        margin-right: 5px; }
    .blog .blog-author p {
      font-style: italic;
      color: #b3b3b3; }
  .blog .blog-comments {
    margin-bottom: 30px; }
    .blog .blog-comments .comments-count {
      font-weight: bold; }
    .blog .blog-comments .comment {
      margin-top: 30px;
      position: relative; }
      .blog .blog-comments .comment .comment-img {
        margin-right: 14px; }
        .blog .blog-comments .comment .comment-img img {
          width: 60px; }
      .blog .blog-comments .comment h5 {
        font-size: 1.6rem;
        margin-bottom: 2px; }
        .blog .blog-comments .comment h5 a {
          font-weight: bold;
          color: #404040;
          transition: 0.3s; }
          .blog .blog-comments .comment h5 a:hover {
            color: #FF87A1; }
        .blog .blog-comments .comment h5 .reply {
          padding-left: 10px;
          color: #e7cb32; }
          .blog .blog-comments .comment h5 .reply i {
            font-size: 2rem; }
      .blog .blog-comments .comment time {
        display: block;
        font-size: 1.4rem;
        color: #ecd760;
        margin-bottom: 5px; }
      .blog .blog-comments .comment.comment-reply {
        padding-left: 40px; }
    .blog .blog-comments .reply-form {
      margin-top: 30px;
      padding: 30px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
      .blog .blog-comments .reply-form h4 {
        font-weight: bold;
        font-size: 2.2rem; }
      .blog .blog-comments .reply-form p {
        font-size: 1.4rem; }
      .blog .blog-comments .reply-form input {
        border-radius: 4px;
        padding: 10px 10px;
        font-size: 1.4rem; }
        .blog .blog-comments .reply-form input:focus {
          box-shadow: none;
          border-color: #ffedf1; }
      .blog .blog-comments .reply-form textarea {
        border-radius: 4px;
        padding: 10px 10px;
        font-size: 1.4rem; }
        .blog .blog-comments .reply-form textarea:focus {
          box-shadow: none;
          border-color: #ffedf1; }
      .blog .blog-comments .reply-form .form-group {
        margin-bottom: 25px; }
      .blog .blog-comments .reply-form .btn-primary {
        border-radius: 4px;
        padding: 10px 20px;
        border: 0;
        background-color: #e7cb32; }
        .blog .blog-comments .reply-form .btn-primary:hover {
          background-color: #ead149; }
  .blog .blog-pagination {
    color: #f2e28d; }
    .blog .blog-pagination ul {
      display: flex;
      padding: 0;
      margin: 0;
      list-style: none; }
    .blog .blog-pagination li {
      margin: 0 5px;
      transition: 0.3s; }
      .blog .blog-pagination li a {
        color: #e7cb32;
        padding: 7px 16px;
        display: flex;
        align-items: center;
        justify-content: center; }
      .blog .blog-pagination li.active, .blog .blog-pagination li:hover {
        background: #FF87A1; }
        .blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
          color: #fff; }
  .blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
    .blog .sidebar .sidebar-title {
      font-size: 2rem;
      font-weight: 700;
      padding: 0 0 0 0;
      margin: 0 0 15px 0;
      color: #e7cb32;
      position: relative; }
    .blog .sidebar .sidebar-item {
      margin-bottom: 30px; }
    .blog .sidebar .search-form form {
      background: #fff;
      border: 1px solid #ddd;
      padding: 3px 10px;
      position: relative; }
      .blog .sidebar .search-form form input[type="text"] {
        border: 0;
        padding: 4px;
        border-radius: 4px;
        width: calc(100% - 40px); }
      .blog .sidebar .search-form form button {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 1.6rem;
        padding: 0 15px;
        margin: -1px;
        background: #FF87A1;
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        line-height: 0; }
        .blog .sidebar .search-form form button i {
          line-height: 0; }
        .blog .sidebar .search-form form button:hover {
          background: #ff9bb1; }
    .blog .sidebar .categories ul {
      list-style: none;
      padding: 0; }
      .blog .sidebar .categories ul li + li {
        padding-top: 10px; }
      .blog .sidebar .categories ul a {
        color: #e7cb32;
        transition: 0.3s; }
        .blog .sidebar .categories ul a:hover {
          color: #FF87A1; }
        .blog .sidebar .categories ul a span {
          padding-left: 5px;
          color: #a6a6a6;
          font-size: 1.4rem; }
    .blog .sidebar .recent-posts .post-item + .post-item {
      margin-top: 15px; }
    .blog .sidebar .recent-posts img {
      width: 80px;
      float: left; }
    .blog .sidebar .recent-posts h4 {
      font-size: 1.5rem;
      margin-left: 95px;
      font-weight: bold; }
      .blog .sidebar .recent-posts h4 a {
        color: #e7cb32;
        transition: 0.3s; }
        .blog .sidebar .recent-posts h4 a:hover {
          color: #FF87A1; }
    .blog .sidebar .recent-posts time {
      display: block;
      margin-left: 95px;
      font-style: italic;
      font-size: 1.4rem;
      color: #a6a6a6; }
    .blog .sidebar .tags {
      margin-bottom: -10px; }
      .blog .sidebar .tags ul {
        list-style: none;
        padding: 0; }
        .blog .sidebar .tags ul li {
          display: inline-block; }
        .blog .sidebar .tags ul a {
          color: #f4e8a4;
          font-size: 1.4rem;
          padding: 6px 14px;
          margin: 0 6px 8px 0;
          border: 1px solid white;
          display: inline-block;
          transition: 0.3s; }
          .blog .sidebar .tags ul a:hover {
            color: #fff;
            border: 1px solid #FF87A1;
            background: #FF87A1; }
          .blog .sidebar .tags ul a span {
            padding-left: 5px;
            color: white;
            font-size: 1.4rem; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 1.4rem; }
  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #e7cb32; }
    #footer .footer-top .tel {
      font-size: 3rem;
      font-weight: 900;
      padding-bottom: .8em; }
      #footer .footer-top .tel a {
        color: #fff; }
    #footer .footer-top h4 {
      font-size: 1.8rem;
      font-weight: 900; }
  #footer .copyright {
    padding: 5px;
    font-size: 1.3rem;
    color: #FF87A1; }
