/* ----------------------
   font
---------------------- */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Zen Maru Gothic', sans-serif !important;
}
body {background: #f9f7f3;}
.fs-12{ font-size: 12px;}
.fs-14{ font-size: 14px;}
.fs-16{ font-size: 16px;}
.fs-18{ font-size: 18px;}
.fs-20{ font-size: 20px;}
.catch {
 font-size: 28px;
}
.f-blu {
  color: #6cc8e6;
}
.f-gry {
  color:#575757 ;
}

.f-bold {
  font-weight: 700;
}
.sub-title {
  color: #666666;
  font-size: clamp(12px, 4vw, 14px);
}
/* =====RESPONSIVE ==== */
.pc-br { display:none; }
.ipad-br { display:none; }
.sp-br { display:none; }
@media (min-width:1200px){
  .pc-br{display:inline;}
}
@media (min-width:768px) and (max-width:1199px){
  .ipad-br{display:inline;}
}
@media (max-width:767px){
  .sp-br{display:inline;}
}
/*********************/
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1200px !important;
  }
}
#vk-mobile-nav-menu-btn {
  display: none;
}
/*----------------------
custom-header
------------------------*/
body.menu-open {
    overflow: hidden;
}

.lk-clinic-header {
    background: #fff;
    position: relative;
    z-index: 1000;
}

.lk-clinic-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.lk-clinic-header__logo img {
    max-width: 280px;
}
@media screen and (max-width: 991px) {
    .lk-clinic-header__inner {
        padding: 5px 0;
    }
    .lk-clinic-header__logo {
        margin-right: auto;
    }
    .lk-clinic-header__logo img {
        max-width: 200px;
        width: 100%;
        height: auto;
    }

}
/* ----固定header（通常ページ）---*/

.lk-clinic-header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
}
/* ==========================
toppage scroll-header
========================== */

.lk-clinic-header--scroll {
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    background: #f9f7f3;
    backdrop-filter: blur(8px);
    transition:
        top .5s ease,
        opacity .5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.lk-clinic-header--scroll.is-show {
    top: 0;
    opacity: 1;
    visibility: visible;
}
/* ==========================
nav
========================== */
.lk-clinic-nav {
    display: flex;
    align-items: center;
    gap: 24px;
     margin-left: auto;
}
.lk-clinic-nav__item {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    border-right: 1px solid #efefef;
    transition: all .35s ease;
}
.lk-clinic-nav__item:hover{
color: #6cc8e6;
}
.lk-clinic-nav__item img {
    width: 60px;
}
.lk-clinic-nav__text {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all .35s ease;
}
.lk-clinic-nav__item:hover .lk-clinic-nav__text {
    color: #6cc8e6;
}

@media screen and (max-width: 1199px) {
    .lk-clinic-nav__item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .lk-clinic-nav__item img {
        width: 50px;
        flex-shrink: 0;
    }
    .lk-clinic-nav__text {
        margin-top: 0;
        font-size: 16px;
    }
}

/* ==========================
button
========================== */
.lk-clinic-action-pc {
    display: flex;
    gap: 12px;
}
.lk-clinic-action-sp {
    display: none;
}
.lk-clinic-btn {
    display: flex;
    font-weight: 500;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 5px 20px;
    transition: all .35s ease;
}
.lk-clinic-btn--web {
    background: #fff;
    color: #6cc8e6;
    border: 2px solid #6cc8e6;
}
.lk-clinic-btn--tel {
    background: #6cc8e6;
    color: #fff;
    border: 2px solid #6cc8e6;
}
.lk-clinic-btn--web:hover {
    background: #6cc8e6;
    color: #fff;
    border: 2px solid #6cc8e6;
}
.lk-clinic-btn--tel:hover {
    color: #fff;
}

/* ==========================
hamburger
========================== */

.lk-clinic-hamburger {
    width: 42px;
    height: 42px;
    border: none;
    background: #6cc8e6;
    border-radius: 5px;
    display: none;
    position: relative;
    z-index: 10000;
    cursor: pointer;
}
.lk-clinic-hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 6px auto;
    transition: .4s;
}

.lk-clinic-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.lk-clinic-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.lk-clinic-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================
overlay
========================== */

.lk-clinic-overlay {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 999;
}

.lk-clinic-overlay.active {
    opacity: 1;
    visibility: visible;
}


@media screen and (max-width: 1199px) {
    .lk-clinic-header {
        padding: 16px 20px;
    }
    .lk-clinic-hamburger {
        display: block;
    }
    .lk-clinic-action-pc {
        display: none;
    }

    .lk-clinic-action-sp {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 40px;
        gap: 12px;
    }

    .lk-clinic-action-sp .lk-clinic-btn {
        width: 100%;
        height: 60px;
    }
    .lk-clinic-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 100px 30px 40px;
        transition: right .5s ease;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,.1);
    }

    .lk-clinic-nav.active {
        right: 0;
    }
}
/* ----------------------
   top-page HERO
---------------------- */
.clinic-hero {
  position: relative;
  overflow: hidden;
  padding-top:80px;
}

.clinic-side {
  max-width: 100%;
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 0 5px;
}
.clinic-logo {
  text-align: center;
}
.clinic-logo img {
  width: 180px;
}
.clinic-type {
  text-align: center;
  color: #666;
  font-weight: 500;
  margin: 40px 0 30px 0;
  line-height: 1.8;
}
.nav-card {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  min-height: 110px;
  color: #666;
  background-color: #fff;
  border: 2px solid #6cc8e6;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s;
  margin-bottom: 20px;
}
.nav-card:hover {
  transform: translateY(-3px);
  color: #6cc8e6;
}
.nav-card img {
  max-width: 60px;
}
@media (max-width: 991px) {
  .clinic-hero {
    padding-top: 20px;
  }
  .clinic-logo img{
    width: 150px;
  }
  .clinic-type {
   margin: 10px 0;
  }
}
/* ---------------------
   top-page SIDE
---------------------- */
@media (min-width: 922px) {

  .clinic-side {
    flex: 0 0 350px;
    max-width: 350px;
  }
}

.right-area{
    flex: 1;
    position: relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width: 90%;
}
/*
.hero-visual{
    width:100%;
    display:flex;
    justify-content:center;
}*/



.hero-trapezoid{
    position: relative;
    width: min(90vw, 1400px);
    height: clamp(380px, 50vw, 700px);
    aspect-ratio: unset;
    overflow: hidden;
    clip-path: url(#houseClip);
    background: #6cc8e6;
    padding: 2px;
}
/* -----------------------
   鳥ラッパー
----------------------- */
.hero-visual{
    position: relative;
    width:100%;
    display:flex;
    justify-content:center;
}


.bird-wrap{
    position:absolute;
    top:0;
    right:-220px;
    z-index:100;
    pointer-events:none;
    animation: birdRoundTrip 24s linear infinite;
}

/* 鳥 */
.bird-image{
    width: clamp(60px, 6vw, 80px);
    height:auto;
    display:block;
}

/* 往復 */
@keyframes birdRoundTrip{

/* ==========================
   右 → 左（左向き）
   ゆるい下弦カーブ
========================== */

0%{
    transform:
        translate(0, -2vh)
        rotate(-25deg)
        scaleX(1);
}

/* ゆるく下降 */
12.5%{
    transform:
        translate(-18vw, 2vh)
        rotate(-20deg)
        scaleX(1);
}

/* 丸い谷（最下点） */
25%{
    transform:
        translate(-38vw, 7vh)
        rotate(-5deg)
        scaleX(1);
}

/* 上昇開始 */
37.5%{
    transform:
        translate(-68vw, 2vh)
        rotate(5deg)
        scaleX(1);
}

/* 左へ抜ける */
50%{
    transform:
        translate(-110vw, -8vh)
        rotate(12deg)
        scaleX(1);
}

  /* ==========================
       左 → 右（右向き）
    ========================== */

    50.1%{
        transform:
            translate(-110vw, -18vh)
            rotate(8deg)
            scaleX(-1);
    }

    62.5%{
        transform:
            translate(-85vw, -10vh)
            rotate(0deg)
            scaleX(-1);
    }

    75%{
        transform:
            translate(-55vw, -5vh)
            rotate(0deg)
            scaleX(-1);
    }

    /* 終盤をなめらかに */
    84%{
        transform:
            translate(-28vw, -1vh)
            rotate(5deg)
            scaleX(-1);
    }

    90%{
        transform:
            translate(-12vw, -3vh)
            rotate(-15deg)
            scaleX(-1);
    }

    /* 開始地点の少し外に戻る */
    94%{
        transform:
            translate(-2vw, -6vh)
            rotate(-15deg)
            scaleX(-1);
    }

    /* 余白（待機） */
    100%{
        transform:
            translate(8vw, -10vh)
            rotate(0deg)
            scaleX(-1);
    }
}


  @media (max-width:768px){

  .bird-wrap{
      position:absolute;
      top:50px;
      right:-80px;
      z-index:100;
      pointer-events:none;

      animation:
          birdRoundTripMobile 8s linear forwards;
  }

  @keyframes birdRoundTripMobile{

      /* 開始 */
      0%{
          transform:
              translate(0,-2vh)
              rotate(-8deg)
              scaleX(1);
      }

      /* ゆるく下降 */
      15%{
          transform:
              translate(-15vw,0vh)
              rotate(-5deg)
              scaleX(1);
      }

      30%{
          transform:
              translate(-32vw,4vh)
              rotate(-2deg)
              scaleX(1);
      }

      /* 谷へ */
      50%{
          transform:
              translate(-55vw,8vh)
              rotate(2deg)
              scaleX(1);
      }

      /* 上昇開始 */
      70%{
          transform:
              translate(-78vw,5vh)
              rotate(5deg)
              scaleX(1);
      }

      85%{
          transform:
              translate(-95vw,1vh)
              rotate(8deg)
              scaleX(1);
      }

      /* 左へ抜ける */
      100%{
          transform:
              translate(calc(-100vw - 80px),-5vh)
              rotate(12deg)
              scaleX(1);
      }
  }
}
/*************/

.heroSwiper{
    width:100%;
    height:100%;
     clip-path: url(#houseClip);
}

.heroSwiper .swiper-slide{
    position: relative;
    height:100%;
}
.heroSwiper .swiper-slide img{
    transform: scale(1);
    transition: transform 6s linear;
}

.heroSwiper .swiper-slide-active img{
    transform: scale(1.08);
}
.heroSwiper img{
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
@media (min-width: 912px) {
  .right-area {
    flex: 1;
    max-width: calc(100% - 350px);
  }
}

/* ----------------------
   BUTTON
---------------------- */
.reserve-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}
.btn-web {
    background: #fff;
    color: #6cc8e6;
    border: 2px solid #6cc8e6;
}
.btn-tel {
    background: #6cc8e6;
    color: #fff;
}
.btn-web,
.btn-tel {
    flex: 1;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    line-height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    transition: transform 0.25s ease;
}
.btn-web:hover,
.btn-tel:hover {
    transform: translateY(-4px);
}
.btn-web:hover {color: #6cc8e6;}
.btn-tel:hover {color: #fff;}

@media (max-width:768px) {
  .reserve-buttons {
    flex-direction: column;
  }
  .clinic-side {
    padding: 20px;
    border-radius: 20px;
  }
}

/*****カレンダー****/
.clinic-calender {
  background: #ffffff00;
  border-radius: 10px;
  color: #666666;
  padding: 20px;
}

.clinic-table {
  width: 90%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: auto;
  font-family: "Kiwi Maru", serif;
  margin-bottom: 10px;
}

.clinic-table,
.clinic-table th,
.clinic-table td {
  border: none;
}

.clinic-table > thead > tr > th {
    white-space: nowrap;
    font-weight: 500;
    height: 27px;
}
.clinic-table > tbody > tr > th {
    white-space: nowrap;
    font-weight: inherit;
    text-align: left;
    padding-right: 5px;
}
.clinic-table tr {
  border-bottom: 1px solid #e5e5e5;
}

.clinic-table th,
.clinic-table td {
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  word-break: break-word;
}

/* 1列目（診療時間・時間帯）を広く */
.clinic-table th:first-child,
.clinic-table td:first-child {
  width: 28%;
  white-space: nowrap;
  font-size: 15px;
  text-align: left;
}
/* 月〜日祝を狭める */
.clinic-table th:not(:first-child),
.clinic-table td:not(:first-child) {
  width: 10.2%;
  font-size: 15px;
}
/* スマホ最適化 */
@media (max-width: 768px) {
  .clinic-calender {
    padding: 12px !important;
    background: #fff;
  }
 /* 時間列をやや広め */
  .clinic-table th:first-child,
  .clinic-table td:first-child {
    width: 20%;
    font-size: 12px;
    white-space: nowrap;
  }

  /* 曜日列をコンパクト化 */
  .clinic-table th:not(:first-child),
  .clinic-table td:not(:first-child) {
    width: 10%;
    font-size: 12px;
    letter-spacing: -0.2em;
    text-align: left;
  }
  .clinic-table th,
  .clinic-table td {
    font-size: 11px; 
    padding: 6px 0;
  }
}

/***********/
.hero-copy {
  width: 100%;
}
.hero-copy h2 {
  color: #666666;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  text-align: left;
  line-height: 1.8;
  padding-left: 50px;
}

.clinic-nav img {
  max-width: 80px;
}


@media (max-width: 991px) {
  .clinic-nav,
  .reserve-buttons {
    display: none;
  }
.hero-copy h2 {
  text-align: center;
  padding-left: 0;
}
} 

  /* ------------------------
  news-area
  --------------------------*/
.news-area {
  display: flex;
  gap: 20px;
  align-items: center;
}
.news-label {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  color: #6cc8e6;
  text-align: center;
  font-weight: 500
}
.news-list {
  flex: 1;
  border-left: 1px solid #6cc8e6;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  text-decoration: none;
  color: #333;
  transition: .3s;
}
.news-item:hover{
  color: #6cc8e6;
  opacity:.8;
}
.news-meta {
  display: flex;
  gap: 16px;
}
.news-category {
    color: #6cc8e6;
    border: 1px solid;
    border-radius: 999px;
    padding: 1px 8px;
    width: 100px;
    text-align: center;
    font-size: 14px;
    transition: .3s;
}
.news-category:hover {
    color: #fff;
    background-color: #6cc8e6;
    opacity:.8;
}
.news-title {
  flex: 1;
}

@media (max-width: 1199px) {
  .news-area {
    display: block;
  }
  .news-item {
    display: block;
    padding: 16px 0;
  }

  .news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    min-width: auto;
  }

  .news-title {
    display: block;
    font-size: 16px;
  }
}
/*---------------------------------
ごあいさつ
----------------------------------*/
.mark {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    background: linear-gradient(
    to bottom,
    #ffffff00 0%,
    #ffffff 15%,
    #ffffff 85%,
    #ffffff00 100%
  );
}

.mark .container {
    position: relative;
    padding-bottom: 80px;
}
.waku-lu {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  z-index: 1;
  pointer-events: none;
}
/*
.waku-rd {
  position: absolute;
  bottom: 0;
  right: 0; 
  z-index: 1;
  pointer-events: none;
}
*/
.image-container {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.catch,
.row {
    position: relative;
    z-index: 2;
}

.bg-image {
    display: block;
    padding-top: 60px;
    width: 150px;
}
/*bird1*/
.overlay-image-l {
    position: absolute;
    top: 0;
    left: 56%;
    transform: translateX(-120%);
    z-index: 10;
    animation: birdLeftSwing 2s ease-in-out infinite;
}
/*bird2*/
.overlay-image-r {
    position: absolute;
    top: 0;
    left: 42%;
    transform: translateX(20%);
    z-index: 10;
    animation: birdRightSwing 2s ease-in-out infinite;
}

/* bird1 */
@keyframes birdLeftSwing {
    0% {
        transform: translateX(-120%) rotate(-3deg);
    }
    50% {
        transform: translateX(-110%) rotate(3deg);
    }
    100% {
        transform: translateX(-120%) rotate(-3deg);
    }
}

/* bird2 */
@keyframes birdRightSwing {
    0% {
        transform: translateX(20%) rotate(3deg);
        transform-origin: bottom center;
    }
    50% {
        transform: translateX(20%) rotate(-3deg);
        transform-origin: bottom center;
    }
    100% {
        transform: translateX(20%) rotate(3deg);
        transform-origin: bottom center;
    }
}
/*--------------------------
診療案内・当院の特徴
--------------------------*/
.feature,
.reservation,
.medical-info,
.partner-hospital,
.access {
  position: relative;
  padding: 120px 0 60px;
}

.waku-lu {
  position: absolute;
  top: 90px;
  left: 30px;
  width: 180px;
  z-index: 5;
  pointer-events: none;
}

.waku-rb {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 180px;
  z-index: 5;
  pointer-events: none;
}

.frame-bottom-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  padding: 14px 36px;
  background: #6cc8e6;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1;
}

.reserve-btn:hover {
  color: #fff;
  opacity: .85;
}

/* スマホ */
@media (max-width: 767px) {
  .frame-bottom-btns {
    flex-direction: column;
    gap: 12px;
    bottom: -55px;
  }
  .waku-lu {
  top: 0;
  left: 0;
  width: 100px;
}
.waku-rb {
  bottom: -20px;
  right: 0;
  width: 100px;
}
.feature .waku-lu,
.reservation .waku-lu,
.medical-info .waku-lu,
.access .waku-lu {
  display: none;
}
}
/* SVGフレーム共通 */
.reservation-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -9;
}
.reservation-frame path {
  fill: #fff;
  stroke: #6cc8e6;
  stroke-width: 2;
}

.feature .container,
.reservation .container,
.medical-info .container,
.access .container {
  position: relative;
  z-index: 2;
  padding: 120px 80px;
}

@media (max-width: 991px) {
  .reservation .container {
    padding:
      90px
      50px
      90px
      50px;
  }
}

@media (max-width: 767px) {
  .reservation-frame {
    display: none;
  }
  .reservation .container {
    background-size: contain;
    padding:
      70px
      25px
      70px
      25px;
  }
  
.feature .container,
.reservation .container,
.medical-info .container,
.access .container {
  padding: 20px;
}
  
.feature,
.reservation,
.medical-info,
.partner-hospital,
.access {
  position: relative;
  padding: 60px 0 60px;
}

}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title .grape-icon {
  text-align: center;
  width: 80px;
  margin-bottom: 10px;
}
.main-title {
  font-size: 28px;
  color: #6cc8e6;
  margin: 0;
  line-height: 1.4;
  letter-spacing: .2rem;
  font-weight: 500;
}
.sub-title {
  font-size: 18px;
  color: #666;
  line-height: 1.4;
}
/*medical information*/
.medical-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 150px;
  margin-top: 10px;
  padding: 12px 10px;
  background: #6cc8e6;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  transition: .3s;
}

.medical-info-btn:hover {
  opacity: .8;
  color: #fff;
}

.medical-info-btn span {
  font-size: 14px;
}
.medical-info-item {
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin-bottom: 30px;
}
.medical-info-item img {
  width: 100%;
  max-width: 120px;
}
/**** access ***/
.access-icon {
  width: 100px;
}
/*partner-hospital*/
.partner-hospital-inner {
  border: 2px solid #6cc8e6;
  background: #fff;
  border-radius: 20px;
}
.partner-hospital-inner ul {
  list-style: none;
  padding-left: 1em;
}

.partner-hospital-inner ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #6cc8e6;
  border-radius: 50%;
  margin-right: 0.5em;
}
@media (max-width: 767px) {
  .access-icon {
    width: 60px;
  }

}
/*-----------------------
footer
------------------------*/
.custom-footer {
    padding: 50px 0;
    background: #f8f8f8;
}

.footer-logo img {
    max-width: 240px;
    height: auto;
}

.footer-departments {
    margin: 20px 0;
}

.footer-departments a {
    display: inline-block;
    background: #cfe0e7;
    padding: 8px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.custom-footer {
    padding: 50px 0 0;
    background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 20%,
    rgba(255,255,255,1) 100%
  );
}

.footer-logo img {
    max-width: 300px;
    height: auto;
}

.footer-departments {
    margin: 20px 0;
    text-align: center;
}

.footer-departments a {
    margin-right: 10px;
    text-decoration: none;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-buttons {
    gap: 15px;
}

.footer-btn {
    min-width: 180px;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: bold;
    background-color: #6cc8e6;
    border:2px solid #6cc8e6;
    color: #fff;
}
.footer-btn:hover {
  color: #6cc8e6;
  background-color: #fff;
}
.footer-tel {
  font-size:28px ;
  font-weight: 600;
  color: #6cc8e6;
}
.footer-copyright {
    text-align: center;
    padding: 20px 15px;
    font-size: 14px;
    color: #666;
}
.foot-calender {
  background-color: #f9f7f3;
  border-radius: 10px;
}
/* スマホ */
@media (max-width: 767px) {
    .footer-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-btn {
        width: 100%;
    }

    .footer-right {
        margin-top: 30px;
    }
}
/*---------------
投稿ページ
----------------*/
.entry-meta-item-author,
.entry-meta-item-updated,
.vk_posts {
  display: none;
}
