/*
Theme Name: ohta-clinic
Author: ambition
Description: ohta-clinic site thema
Version: 1.0
*/
@charset "UTF-8";
/* 共通 */
html {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
body {
    /* background-color: #FFFCF1; */
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    color: #1D1D1D;
}
img {
  max-width: 100%;
  -webkit-user-drag: none; /* Chrome, Safari, Operaドラッグ禁止 */
  -khtml-user-drag: none; /* Konquerorドラッグ禁止 */
  -moz-user-drag: none; /* Firefoxドラッグ禁止 */
}
section {
    padding-top: 20vh;
}
.wrapper {
  width: 80vw;
  margin: 0 auto;
}
.pc-none {
  display: none;
}
.sp-only{
        display: none;
    }
h2 {
  font-size: 1.8rem;
}
.treat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.treat::before,
.treat::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.treat::before {
  background-image: url("images/common/treat01.png");
}
.treat::after {
  background-image: url("images/common/treat01.png");
}
.under-treat {
  text-align: center;
}
.font-color-yellow {
  color: #bc9c3d;
  font-size: 2.5rem;
  font-weight: 100;
}
.dot-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
  }
li {
  margin-bottom: 8px;
}
li::marker {
  font-size: 0.6em;
}
/* 隠しヘッダー */
/* =========================
   スクロール後に表示するPCナビ
========================= */

.top-nav-hidden {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:
        top 0.4s ease,
        opacity 0.4s ease,
        visibility 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
/* スクロールしたら表示 */
.top-nav-hidden.show {
    top: 0;
    opacity: 1;
    visibility: visible;
}
/* 中身 */
.top-nav-hidden {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 64px 32px;
}

.header-logo-hidden {
    width: 20vw;
}
.header-logo-hidden img {
    display: block;
    width: 100%;
    height: auto;
}
.nav-inner-hidden ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-inner-hidden li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}
/* =========================
完全に非表示
========================= */
@media (max-width: 1100px) {
    .top-nav-hidden {
        display: none !important;
    }

}
/* ここからトップページ */
.top-key {
  background: url(images/top/key-bg.jpg) no-repeat center / cover;
  height: 100vh;
}
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
}
.header-logo {
  width: 20vw;
}
.nav-inner ul {
  display: flex;
}
.header-inner {
  display: flex;
}
.nav-inner ul li {
  margin: 8px 24px;
}
.header-contents {
  width: 40vw;
  margin: 0 auto;
  margin-top: 64px;
}
.header-contents .top-title-img {
  width: 12vw;
  margin: 0 auto;
}
.header-contents p {
  text-align: center;
}
.top-title {
  font-size: 1.8rem;
}
/* ヘッダー画像スライド */
.header-contents .top-schedule {
  width: 40vw;
  margin: 0 auto;
  margin-top: 40px;
}
.header-bgc-inner {
  position: relative;
  top: 1%;
  width: 50vw;
  border-top-right-radius: 10px;  
  border-bottom-right-radius: 10px;  
  overflow: hidden;
}
.image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    animation: image-switch-animation 24s infinite;
}
.src1 {
  background:url(images/top/top-01.jpg) no-repeat left / cover;
}
.src2 {
  background: url(images/top/top-02.jpg)no-repeat left / cover;
}
.src3 {
  background: url(images/top/top-03.jpg)no-repeat left / cover;
}
.image:nth-of-type(1) {
    animation-delay: 0s;
}
.image:nth-of-type(2) {
    animation-delay: 8s;
}
.image:nth-of-type(3) {
    animation-delay: 16s;
}
@keyframes image-switch-animation {
    0%{ opacity: 0;}
    10%{ opacity: 1;}
    25%{ opacity: 1;}
    45%{ opacity: 0;}
    100%{ opacity: 0;}
}
/* 予約ボタン */
.reserve-btn {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
}
.reserve-btn:hover {
  opacity: 0.5;
}
.reserve-btn img {
  display: block;
  width: 13vw;
  height: auto;
}
.medical-care {
  display: flex;
  justify-content: space-around;
  margin: 40px auto 80px auto;
  width: 65vw;
}
.medical-care-inner {
    border-radius: 20px;
    overflow: hidden;
}
.medical-care-inner a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 32px 80px;
    text-decoration: none;
}
.medical-care-inner a:hover {
  opacity: 0.5;
}
.medical-care-inner h3 {
  text-align: center;
  margin-bottom: 24px;
}
.medical-care-inner img {
  width: 8vw;
}
.bg-yellow {
  background-color: #EBE2A7;
}
.bg-blue {
  background-color: #B9DBE5;
}
.bg-green {
  background-color: #C7DB9F
}
.home-visit {
  background-color: #E9EFF2;
  border: 1px solid #326276 ;
  border-radius: 10px;
  padding: 40px 100px;
  width: 70vw;
  margin: 0 auto;
}
.home-visit h3 {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #326276;
  text-align: center;
}
.greeting-top {
  background:url(images/top/top-wave.png) no-repeat left / cover;
  height: 10vh;
}
.greeting-center {
  background-color: #FBFCE8;
}
.greeting-bottom {
  background:url(images/top/bottom-wave.png) no-repeat left / cover;
  height: 8vh;
  width: 100%;
  margin-bottom: 152px;
}
.greeting-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.greeting-title {
  color: #7E5202;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.greeting-contents-inner {
  width: 48vw;
  margin-right: 24px;
}
.greeting-contents-inner p {
  margin-bottom: 24px;
}
.greeting-image img {
  width: 26vw;
  height: 55vh;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}
.greeting-image p {
  text-align: right;
  margin-top: 16px;
}
.philosophy {
  background: url(images/top/top-bg.jpg)no-repeat center/ cover;
  height: 300px;
  width: 100%;
  margin-bottom: 88px;
}
/* お知らせ */
article .news-area-warp {
  border: 1px solid #BCB089;
  margin: 64px auto;
  padding: 32px;
  box-shadow: 0px 3px 6px #00000029;
}
.news-list > a {
    display: inline-block;
}
 .item {
  display: flex;
  align-items: center;
}
 .item .date {
  margin-right: 32px;
  flex-shrink: 0;
}
.news-list a:hover {
  opacity: 0.5;
}
.top-news-btn {
    text-align: center;
}
.top-news-btn button a {
  background-color: #D8C665;
  padding: 16px 24px;
  text-align: center;
}
.top-news-btn button a:hover {
 opacity: 0.5;
}
/* グリッド */
.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  margin: 80px auto;
}
.gallery-item {
  overflow: hidden;
}
/* 画像 */
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 01 */
.gallery-item01 {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: auto;
}
/* 02 */
.gallery-item02 {
  grid-column: 2 / 4;
  grid-row: 1;
  aspect-ratio: 2 / 1;
}
/* 03 */
.gallery-item03 {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}
/* 04 */
.gallery-item04 {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}
/* 05 */
.gallery-item05 {
  grid-column: 3;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}
/* 06 */
.gallery-item06 {
  grid-column: 4;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

@media screen and (max-width: 1100px) {
  section {
    padding-top: 10vh;
}
  .sp-only{
        display: block;
    }
  .pc-only {
    display: none;
  }
  .pc-none {
  display: block;
}
  .top-nav {
  display: block;
}
  .nav-inner {
    display: none;
  }
  .top-key {
  height: 125vh;
}
.header-logo {
  width: 30vw;
}
.header-inner {
  display: block;
}
.header-contents {
  width: 80vw;
}
.header-contents .top-title-img {
  width: 20vw;
  margin: 24px auto 40px auto;
}
/* ヘッダー画像スライド */
.header-contents .top-schedule {
  width: 80vw;
}
.header-bgc-inner {
  height: 45vh;
  width: 80vw;
}
/* 予約ボタン */
.reserve-btn {
  display: none;
}
.medical-care {
  display: block;
  width: 100%;
}
.medical-care-inner  {
    display: block;
    width: 250px;
    height: 250px;
    margin: 0 auto 40px auto;
}
.medical-care-inner a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 32px 64px;
    text-decoration: none;
}
.medical-care-inner img {
  width: 150px;
}
.greeting-contents {
  display: block;
  margin-top: 40px;
}
.greeting-contents-inner {
  width: 100%;
  margin-right: 0px;
}
.greeting-image img {
  width: 50vw;
  height: 40vh;
}
.greeting-image p {
  text-align: left;
}
.tophead-sp {
    display: none;
}
    /* =========================
      下部固定メニュー
    ========================= */

    .tophead-sp {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 4px;
        width: 100%;
        height: 90px;
        z-index: 9999;
        padding: 8px;
        box-sizing: border-box;
        gap: 8px;
        background: transparent;
    }
    /* 3つのボタン */
    .tophead-sp-menu,
    .tophead-sp-reserved,
    .tophead-sp-phone {
        height: 74px;
    }
    /* Menu */
    .tophead-sp-menu {
        width: 23%;
    }

    /* 予約 */
    .tophead-sp-reserved {
        flex: 1;
    }

    /* 電話 */
    .tophead-sp-phone {
        width: 18%;
    }


    /* =========================
    ボタン
    ========================= */

    .menu-label {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border-radius: 5px;
        background-color: #326276;
        text-align: center;
        color: #fff;
        line-height: 1.2;
        border: 1px solid #fff;
    }

    .menu-label img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
  .tophead-sp-reserved {
  background: url(images/common/sp-webbtn-bg.jpg) no-repeat center / cover;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding-top: 20px;
  font-size: 1.2rem;
  border: 1px solid #fff;
 }

    .tophead-sp-reserved a,
    .tophead-sp-phone a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .tophead-sp-reserved img,
    .tophead-sp-phone img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .tophead-sp-phone {
      background-color: #316175;
      border-radius: 5px;
      border: 1px solid #fff ;
      padding: 16px;
    }


    /* =========================
       開いたメニュー
    ========================= */

    .tophead-sp-menu .sm {
        display: none;
        position: fixed;
        left: 0;
        bottom: 0px;
        width: 100%;
        overflow-y: auto;
        background: #F5EFDA;
        z-index: 10000;
        height: 100vh;
    }
    .tophead-sp-menu .sm.active {
        display: block;
    }
    /* メニュー一覧 */
    .tophead-sp-menu .sm ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin: 24px;
    }
    /* .tophead-sp-menu .sm li {
      border-bottom: 1px solid #707070;
    } */

    .tophead-sp-menu .sm li a {
        display: block;
        padding: 18px 25px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        border-bottom: 1px solid #707070;
    }
    /* 閉じるボタン */
    .menu-close {
        display: block;
        width: 50px;
        height: 50px;
        margin-left: auto;
        border: none;
        background: none;
        font-size: 25px;
        cursor: pointer;
    }
}
@media screen and (max-width: 767px) {
.header-logo {
  width: 50vw;
}
.top-title {
  font-size: 1.4rem;
}
.header-contents .top-title-img {
  width: 30vw;
  margin: 16px auto 16px auto;
}
.header-contents {
  margin-top: 16px;
}
.header-bgc-inner {
  height: 45vh;
  width: 85vw;
}
.home-visit {
  padding: 40px 24px;
  width: 80vw;
}
.philosophy {
  background: url(images/top/sp-top-bg.jpg)no-repeat center/ cover;
  height: 300px;
  width: 100%;
  margin-bottom: 88px;
}
.font-color-yellow {
  font-size: 2rem;
}
/* グリッド */
.clinic-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 92%;
    margin: 50px auto;
  }
  /* 01 */
  .gallery-item01 {
    grid-column: 1;
    grid-row: 2 / 3;
    aspect-ratio: 1 / 1;
  }
  /* 02 */
  .gallery-item02 {
    grid-column: 1 / 3 ;
    grid-row: 1 / 2 ;
    aspect-ratio: 1 / 0.5;
  }
  /* 03 */
  .gallery-item03 {
    grid-column: 2;
    grid-row: 2 / 3 ;
    aspect-ratio: 1 / 1;
  }
  /* 04 */
  .gallery-item04 {
    grid-column: 1;
    grid-row: 3;
    aspect-ratio: 1 / 1;
  }
  /* 05 */
  .gallery-item05 {
    grid-column: 1;
    grid-row: 4;
    aspect-ratio: 1 / 1;
  }
  /* 06 */
  .gallery-item06 {
    grid-column: 2;
    grid-row: 3 / 5;
    aspect-ratio: 1 / 2.1;
  }
  .clinic-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}

/* 共通終了 */
/* サブページ共通 */
.sub-head {
  background: url(images/common/sub-header.jpg) no-repeat center / cover;
  height: 15vh;
  position: relative;
}
.sub-head h2 {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .sub-head {
  height: 10vh;
}
.sub-head h2 {
  font-size: 1.3rem;
  width: 100%;
}
}
/* サブページ */
/* 初診の方へ */
.first-info {
  border: 1px solid #897507;
  position: relative;
  padding: 64px;
}
.first-info h3 {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translate(-50%);
  border: none ;
  background-color: #fff;
  color: #897507;
  font-size: 1.3rem;
  padding: 8px 64px;
}
.first-info p {
  text-align: center;
}
.first-tel-area {
  width: 200px;
  margin: 24px auto;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  background-color: #326276;
}
.first-tel-area a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 8px;
  text-decoration: none;
}
.first-tel-area a:hover {
  opacity: 0.5;
}
.sub-h3 {
  font-size: 1.3rem;
  padding-bottom: 8px;
  margin-bottom: 56px;
  border-bottom: 1px solid #326276;
  color: #326276;
}
.first-reserved-btn {
  width: 20vw;
  margin-top: 24px;
}
.first-reserved-btn a:hover {
  opacity: 0.5;
}
.bring-items {
  display: flex;
  justify-content: space-around;
}
.bring-items-inner {
  background-color: #EDF5F8;
  width: 18vw;
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0px 3px 6px #00000029;
}
.bring-bg-green {
  background-color: #ecf7d7;
}
.bring-items-inner img {
  height: 20vh;
}
.first-flow {
  margin-bottom: 64px;
  padding: 32px;
  background-color: #F8F8F8;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #00000029;
}
.first-flow h4 {
  color: #8D661D;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1100px) {
.first-info {
  position: relative;
  padding: 64px;
}
.first-info h3 {
  width: 60vw ;
  text-align: center;
  font-size: 1.5rem;
  padding: 8px 16px;
}
.first-reserved-btn {
  width: 40vw;
}
.bring-items-inner img {
  height: 8vh;
}
}
@media screen and (max-width: 767px) {
  .first-info {
  padding: 80px 16px 32px 16px;
}
.first-info h3 {
  width: 70vw ;
  font-size: 1.3rem;
  padding: 8px 32px;
}
.sub-h3 {
  font-size: 1.2rem;
}
.first-reserved-btn {
  width: 60vw;
}
.bring-items {
  display: block;
}
.bring-items-inner {
  width: 250px;
  height: 250px;
  padding: 16px;
  margin: 0 auto 24px auto;
}
.bring-items-inner img {
  height: 15vh;
  margin: 24px auto 8px auto;
}
.first-flow {
  margin-bottom: 32px;
  padding: 32px;
}
}
/* 当院について */
.about-doctor {
  display: flex;
}
.about-doctor div {
  margin-bottom: 16px;
    margin-right: 80px;
}
.about-doctor img {
  width: 30vw;
  height: 70vh;
  object-fit: cover;
}
.about-doctor > div > .about-doctor-name {
  background-color: #E6DAAD;
  padding: 12px 8px;
  text-align: center;
}
.doctor-detail p {
  background-color: #F5EFDA;
  padding: 4px 8px;
  margin-bottom: 16px;
}
.doctor-detail ul   {
  margin-bottom: 32px;
}
.doctor-detail ul li  {
  margin-bottom: 4px;
  text-decoration: none;
}
.overview {
  background-color: #F8F5E8;
  padding: 56px;
}
.overview-inner {
  display: flex;
  border-bottom: 1px solid #707070;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.overview-inner h4 {
  width: 10vw;
}
.about-equipment {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 56px;
}
@media screen and (max-width: 1100px) {
.about-doctor {
  display: block;
}
.about-doctor div {
  margin-bottom: 16px;
    margin-right: 0px;
}
.about-doctor img {
  width: 40vw;
  height: 30vh;
}
.about-doctor > div > .about-doctor-name {
  width: 40vw;
  margin-bottom: 64px;
}
.overview {
  padding: 24px;
}
.overview-inner {
  display: block;
}
.overview-inner h4 {
  width: 100%;
}
}
@media screen and (max-width: 767px) {
  .about-doctor img {
  width: 100%;
  height: 50vh;
}
.about-doctor > div > .about-doctor-name {
  width: 100%;
  margin-bottom: 64px;
}
  .about-equipment {
  display: grid;
  grid-template-columns: 1fr ;
  grid-template-rows: 1fr ;
  gap: 40px;
}
}
/* 診療内容 */
.medical-care-page-inner {
  margin-bottom: 64px;
  text-align: right;
}
.medical-care-page-inner p {
  text-align: left;
  margin-bottom: 56px;
}
.medical-care-page-inner h3 {
  font-size: 1.2rem;
  text-align: left;
  background-color: #F5EFDA;
  padding: 8px 24px;
  border-radius: 0;
  margin-bottom: 24px;
}
.medical-care-page-inner a {
  border: 1px solid #326276;
  padding: 8px 32px;
  color: #326276;
}
.medical-care-page-inner a:hover {
  background-color: #326276;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .medical-care-page-inner {
  text-align: center;
  margin-bottom: 96px;
}
.medical-care-page-inner p {
  text-align: left;
  margin-bottom: 40px;
}
}

/* アクセス */
.access-address iframe {
  width: 100%;
}
.direction {
  margin-top: 64px;
  display: flex;
}
.direction-inner h4 {
  color: #326276;
  margin-bottom: 16px;
}
.direction-inner img {
  width: 40vw;
}
.direction-inner .access-detail::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("images/access/square.png");
  vertical-align: middle;
  margin-right: 5px;
}
@media screen and (max-width: 1100px) {
  .direction {
  display: block;
}
.direction-inner img {
  width: 100%;
  margin-bottom: 64px;
}
}
/* お知らせ一覧 */
.news-details-ar {
  margin-top: 40px;
}
.blog-item {
    display: inline-flex;
    align-items: center;
}

.blog-time {
    margin-right: 30px;
}

.blog-item__content {
    margin: 0;
}

.blog-item__title {
    margin: 0;
}
.news-details-ar a:hover {
  opacity: 0.5;
}
/* ページネーション */
.pagenation {
    margin-top: 60px;
    text-align: center;
}
.pagenation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagenation li a,
.pagenation li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border: 1px solid #ddd;
}
.pagenation li span.current {
    color: #fff;
    background: #307178;
    border-color: #307178;
}
/* お知らせ */
.single-ind h2 {
  margin-bottom: 24px;
}
.single-page-ind p {
  margin-bottom: 16px;
  line-height: 1.5;
}
.post-content p {
    margin: 0 0 24px;
}
.news-list {
  margin-top: 16px;
}
/* 採用情報 */
@media screen and (max-width: 1100px) {
.item {
  display: block;
}
.blog-item {
        display: block;
        margin-bottom: 8px;
    }
    .blog-item__content {
        width: 100%;
    }
}

/* 内科 */
.lifestyle-disease-text .im-text {
  margin-bottom: 16px;
}
/* 循環器内科 */
.bg-navy {
  background-color: #316175;
  padding: 5vh 10vw;
  margin-top: 152px;
}
.abnormal-result {
  background-color: #fff;
  padding: 32px 80px;
}
.abnormal-result h3 {
  color: #897504;
  margin-bottom: 32px;
  text-align: center;
  font-size: 1.5rem;
}
.abnormal-result p {
  margin-bottom: 24px;
}
@media screen and (max-width: 780px) {
.abnormal-result {
  padding: 32px 16px;
}
.abnormal-result h3 {
  color: #897504;
  margin-bottom: 32px;
  text-align: center;
  font-size: 1.5rem;
}
.abnormal-result p {
  margin-bottom: 24px;
}
}
/* 生活習慣病 */
.sub-medical-top{
  display: flex;
  margin-bottom: 64px;
}
.sub-medical-top-image{
  width: 38vw;
  margin-right: 56px;
}
@media screen and (max-width: 1100px) {
.sub-medical-top{
  display: block;
  margin-bottom: 64px;
}
.sub-medical-top-image{
  width: 100%;
  margin-right: 0px;
  margin-bottom: 32px;
}
}
/* 糖尿病 */
.diabetes-type1 {
  margin-top: 56px;
}
.diabetes-type2 {
  margin-top: 40px;
}
.dia1-bg {
  border: 1px solid #307178;
  padding: 16px 32px;
  border-bottom: none;
  color: #08555D;
}
.dia1-text {
  border: 1px solid #307178;
  padding: 32px ;
}
.dia2-bg {
  border: 1px solid #307178;
  padding: 16px 32px;
  border-bottom: none;
  color: #136F1E;
}
.dia2-text {
  border: 1px solid #307178;
  padding: 32px;
}
.dia1-bg {
  background-color: #EDF5F8;
}
.dia2-bg {
  background-color: #EDF5DE;
}
.complication {
  margin: 48px auto;
  padding: 56px 80px;
  background-color: #F8F5E8;
}
.complication-title {
  font-size: 1.5rem;
  color: #897507;
  text-align: center;
}
.complication-type {
  display: flex;
  justify-content: space-around;
  margin-top: 64px;
}
.complication-type-inner {
  background-color: #fff;
  padding: 32px;
  width: 20vw;
  text-align: center;
}
.complication-type-inner img {
  height: 20vh;
  object-fit: contain;
}
.complication-type-inner h4 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}
@media screen and (max-width: 780px) {
.complication {
  margin: 48px auto;
  padding: 16px 24px;
  background-color: #F8F5E8;
}
  .complication-type {
  display: block;
}
.complication-type-inner {
  padding: 16px;
  width: 100%;
  margin-bottom: 32px;
}
.complication-type-inner img {
  height: 20vh;
  object-fit: contain;
}
.complication-type-inner h4 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}
}
/* 睡眠時無呼吸症候群（SAS） */
.text-center {
  text-align: center;
}
.sas-image-illust {
  width: 20vw;
  margin: 16px auto;
  text-align: center;
}
.sas-diagnosis {
  margin-top: 80px;
}
.sas-image {
  margin: 32px auto;
}
.sas-image img {
  width: 25vw;
  margin-right: 16px;
}
@media screen and (max-width: 780px) {
  .sas-image-illust {
  width: 40vw;
}
.sas-image img {
  display: block;
  width: 80%;
  margin: 0 auto 16px auto;
}
}

/* ここまでサブページ */
/* フッター */
footer {
  background: url(images/common/footer-bg.png) no-repeat center / cover;
  height: 68vh;
  width: 100%;
  margin-top: 152px;
  padding: 80px;
}
.footer-schedule {
  width: 40vw;
}
.copy-write {
  margin-top : 15vh;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
}
.tel a img {
  margin-right: 8px;
}
.tel {
  margin-top: 40px;
  font-size: 2rem;
}
address {
  margin-top: 40px;
}
.footer-logo {
  width: 18vw;
}
@media screen and (max-width: 1100px) {
.footer-schedule {
  width: 50vw;
  margin-top: 32px;
}
.footer-inner {
  display: block;
}
.footer-logo {
  width: 30vw;
}
}
@media screen and (max-width: 767px) {
  footer {
  background: url(images/common/sp-footer-bg.png) no-repeat center / cover;
  height: 680px;
  padding: 24px;
}
.footer-schedule {
  width: 40vw;
}
.copy-write {
  margin-top : 80px;
}
.footer-logo {
  width: 60vw;
  margin-top: 40px;
}
  .footer-schedule {
  width: 80vw;
}
}
