@charset "utf-8";

ul{
      padding-inline-start: 0;
}

@font-face {
  font-family: 'HiraginoMaru';
  src: url('HiraginoMaru.ttf') format('truetype');
}


/*========= PC ===============*/
@media only screen and  (min-width : 481px) {

  /* パソコンで見たときは"pc"のclassがついた画像が表示される */
  .pc { display: block !important; }
  .sp { display: none !important; }

    /* パソコンで見たときのみ改行 */
  .br-sp {display: none; }
  .sp {display: none; }



 /* ヘッダー */
/* ヘッダー全体 */
header {
  font-family: 'HiraginoMaru', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10000;
}

/* header-top（ロゴ+情報＋電話+LINEの部分） */
.header-top {
  margin: 0  auto;
  display: flex;
  max-width: 80%;
  justify-content: space-between; /* 左右に分ける */
  align-items: center;            /* 縦中央揃え */
  padding: 20px 40px;
  gap: 24px;
}

/* 左側（ロゴ + クリニック情報） */
.header-left {
  display: flex;
  align-items: center;            /* 縦中央揃え */
  gap: 12px;
}

/* ロゴ */
.header-logo {
  max-width: 120px;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  height: auto;
}

/* クリニック情報 */
.header-clinic-info {
  display: flex;
  flex-direction: column;
  justify-content: center;        /* 縦中央揃え */
  align-items: center;            /* 横中央揃え */
  text-align: center;
  min-width: 200px;               /* 必要に応じて調整してください */
}

.clinic-address {
  font-size: 15px;
  color: #555;
  margin-bottom: 4px;
}

.clinic-name {
  font-size: 30px;
}

/* 右側（電話番号 + LINE） */
.header-contact {
  display: flex;
  align-items: center; /* 縦中央揃え */
  gap: 12px;
  flex-shrink: 0;
}

/* 電話番号部分 */
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: center;            /* テキスト中央揃え */
  white-space: nowrap;
}

.phone-label {
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
  display: block;
  color: #4d4d4d;
}

.header-phone a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4d4d4d;
  text-decoration: none;
  font-size: 30px;
}

.icon {
  color: #376bb6;
}

/* LINEアイコン */
.header-line img {
  width: 50px;
  height: auto;
}

/* ナビゲーション */
.header-nav {
  margin: 0 auto 20px auto;
}

.header-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.divider {
  margin-right: 20px;
  color: #4d4d4d;
}

.header-nav li a {
  text-decoration: none;
  color: #4d4d4d;
  font-size: 16px;
  padding: 8px 12px;
}

.header-nav li a:hover,
.header-nav li a.current {
  text-decoration: underline 2px #376bb6;
}




/* ヘッダー */




/* TOP画像 */
.main-wrapper {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* 左半分を背景スライダーに */
.slider {
  position: relative; /* absoluteではなく相対配置に */
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* スライド画像 */
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* スライダー幅に合わせて100% */
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide-img.active {
  opacity: 1;
}

/* 右半分：ロゴ・説明文・ボタン */
.right-content {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央揃え */
  align-items: center;     /* 横中央揃え */
  text-align: center;
  padding: 2rem;
  background: transparent; /* 必要に応じて背景色 */
  z-index: 2;
}

#logo_top img {
  max-width: 300px;
  width: 80%;
  height: auto;
  margin-bottom: 1.5rem;
}

#setsumei p {
  text-align: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #4d4d4d;
}

.button-43 {
  font-family: 'HiraginoMaru', sans-serif;
  margin-top: 1.5rem;
  background: linear-gradient(to left, #03a8dd, #366eb8);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  padding: 0.9em 80px;
  border-radius: 25px;
  text-decoration: none;
}

.button-43:hover {
  opacity: 0.8;
}

/* TOP画像 */




/* お知らせ */

.news-container {
  display: block;
}
#oshirase{
  padding: 40px 0 ;
  margin: 0 auto;
  background-color: #f0f5f9;
}


#oshirase ul{
display: flex;
justify-content: center;
gap: 0;
}



#oshirase ul li{
  align-items: center;
}


h2{
  margin: 20px auto 0 auto;
  max-width: 50%;
  font-size: 30px;
  text-align: center;
  color: #366eb8;
  border-bottom: solid 1px#366eb8;
}



.button-44 {
  font-family: "Noto Sans JP", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin:20px auto 0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to left, #03a8dd ,#366eb8);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
}

.button-44 a{
   color: #fff;
    text-decoration: none;
}


#oshiraselist {
  display: flex;
  flex-direction: column;
  justify-content: center;
   text-align: center; /* 中央揃えにする */
}

#oshiraselist ul{
  font-family: "Noto Sans JP", sans-serif;
  margin: 20px 0 20px 300px;
  display: flex;
  justify-content: left;
  font-size: 15px;
}

#oshiraselist ul li{
  margin:0px 20px;
  padding: 10px;
}

#category{
  color: #366eb8;
  border: 1px solid #366eb8;
  padding: 10px;
}

#naiyou{
   color: #366eb8;
}
/* お知らせ */




 
/* 診療のご案内 */

#shinryou{
  padding: 80px 0;
}


h3{
font-family: "Noto Sans JP", sans-serif;
text-align: center;
 margin: 0 auto  30px auto;
  max-width: 10%;
  font-size: 30px;
  color: #366eb8;
  border-bottom: solid 1px#366eb8;
}

#category01 ul {
  font-family: 'HiraginoMaru', sans-serif;
  display: flex;
  justify-content: center;
}

#category02{
  margin: 15px  10px;
}

#title{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
  border: solid 2px #4bbce8;
  padding: 0 10px;
  max-width: 100%;
  background-color: #e5f5fc;
}

#title li img{
  width: 60px;
  padding-top: 10px;
}

#title li p{
  padding-right: 10px;
}

#title02{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
  display: flex;
  justify-content: center;
  border: solid 2px #22c2b4;
  padding: 0 10px;
  max-width: 100%;
  background-color: #edf8f7;
}

#title02 li img{
  width: 60px;
  padding-top: 10px;
}
#title02 li p{
  padding-right: 10px;
}

#title03{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
  display: flex;
  justify-content: center;
  border: solid 2px #e5c76d;
  padding: 0 10px;
  max-width: 100%;
  background-color: #fcf9ee;
}

#title03 li img{
  width: 60px;
  padding-top: 10px;
}

#title03 li p{
  padding-right: 10px;
}

#title04{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;

  border: solid 2px #f58a8d;
  padding: 0 10px;
  max-width: 100%;
  background-color: #fcf3f4;
}

#title04 li img{
  width: 60px;
  padding-top: 10px;
}


#title04 li p{
  padding-right: 10px;
}

#category02 nav{
  align-items: center;
  display: flex;
  justify-content: center;
}


#title05{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  display: flex;
  justify-content: center;
  border: solid 2px #ebb278;
  padding: 0 10px;
  max-width: 100%;
  background-color: #fef2e6;
}

#main{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
}

#sub{
     font-family: 'HiraginoMaru', sans-serif;
  margin-left: 30px;
   font-size: 18px;
}

#title05 li img{
  width: 60px;
  padding-top: 10px;
}

#list{
    font-family: 'HiraginoMaru', sans-serif;
  font-size: 18px;
  margin-top: 10px;
 max-width: 100%;
 border: dotted  1px #4d4d4d;
  padding: 10px;
}

#list02{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 16px;
   margin: 10px auto 0 auto;
  max-width: 100%;
 border: dotted  1px #4d4d4d;
  padding: 10px;
      margin-bottom: 80px;
}



/* 診療のご案内 */


 /* 診療時間 */

#shinryou02{
  font-family: "Noto Sans JP", sans-serif;
  padding: 80px 0;
}

h4{
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
 margin: 0 auto  30px auto;
  max-width: 100%;
  font-size: 30px;
  color: #366eb8;
  border-bottom: solid 1px#366eb8;
}

#shinryoutitle{
  display: flex;
  justify-content: center;

  margin: 0 auto;
}

#shinryoutitle p{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 17px;
  margin: 20px 0 0 20px;
  color: #366eb8;
}

  /* 表 */

  #hyou{
    font-family: 'HiraginoMaru', sans-serif;
    max-width: 50%;
    margin: 0 auto;
    padding: 40px 20px 40px 20px;
    background-color: #f0f5f9;
  }

table{
  background-color: #fff;
   font-family: "Noto Sans JP", sans-serif;
  border-collapse: collapse;
  border-spacing: 0;
  width: 90%;
  margin: 0 auto;
  font-size: 18px;
}

table tr{
  border: solid 1px #4d4d4d;
  cursor: pointer;
}

#youbi{
  background-color: #d7e1ef;
}


table th,table td{
  border: solid 1px #4d4d4d;
  text-align: center;
  width: 10%;
  padding: 15px 0;
}

  /* 表 */
#setsumei02{
  margin-top: 20px;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
  line-height: 30px;
 text-align: center;
 color: #4d4d4d;
}

#setsumei02 a{
 color: #4d4d4d;
}

#setsumei03{
  margin: 30px auto 0 auto;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
  line-height: 30px;
 text-align: center;
 color: #4d4d4d;
}

#setsumei03 a{
 color: #4d4d4d;
 border-bottom:  solid 1px #4d4d4d;
}



.button-45 {
font-family: 'HiraginoMaru', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 20px auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
     background: linear-gradient(to left, #03a8dd ,#366eb8);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-45 a{
   color: #fff;
    text-decoration: none;
}

  /* 診療時間 */


  
  
/* アクセス */

iframe{
  height: 400px;
  width: 50%;
}

#chizu{
  text-align: center;
  margin: 0 auto;
}

/* アクセス */

/* フッター */
/* ===== 全体 ===== */
.footer-2 {
  font-family: 'HiraginoMaru', sans-serif;
  max-width: 100%;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px 10px 10px;
  background-color: #f0f5f9;
}

/* リスト */
.footer-2__list {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  align-items: center;
  list-style-type: none;
  margin: 0 0 .5em;
  padding: .5em;
}

/* クリニック情報テキスト */
.footer-2__text {
  font-size: 1em;
  line-height: 30px;
  text-align: left;
    max-width: 500px;
}

.footer-2__text a {
  color: #4d4d4d;
  text-decoration: none;
}

.clinic-name02 {
  font-size: 30px;
   
}

/* ロゴ */
#logo_footer img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0;
}

.logo-and-text {
  display: flex;
  align-items: center;
}

/* 診療時間表 */
#table02 {
 width: 600px;        /* ← 任意の横幅（例：600pxや700pxなど） */
  min-width: 600px;    /* ← 小さくならないようにする */
  flex-shrink: 0;      /* ← フレックス内で潰れないようにする */
  background-color: #fff;
  font-family: 'HiraginoMaru', sans-serif;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  font-size: 15px;
}

#table02 tr {
  border: solid 1px #4d4d4d;
  cursor: pointer;
}

#youbi {
  background-color: #d7e1ef;
}

#table02 th,
#table02 td {
  border: solid 1px #4d4d4d;
  text-align: center;
  width: 10%;
  padding: 5px 0;
}

/* 下部ナビゲーション */
.footer-nav-links {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-links li {
  font-size: 15px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  position: relative;
}

.footer-link {
  color: #4d4d4d;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
}

/* 縦線（仕切り） */
.footer-nav-links li:not(.no-border):not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background-color: #4d4d4d;
}

.footer-nav-links li.no-border::after {
  display: none !important;
}

/* LINEアイコン */
.footer-nav-links img {
  width: 40px;
  display: block;
}

/* コピーライト */
.footer-2__copyright {
  width: 100%;
  padding: 10px;
  text-align: center;
  background: linear-gradient(to left, #03a8dd ,#366eb8);
  margin: 0;
  color: #fff;
  font-weight: 200;
  font-size: .8em;
}

/* フッター */
  }










/*========= スマホ ===============*/
@media only screen and  (max-width : 481px) {

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
  .pc { display: none !important; }
  .sp { display: block !important; }

    /* パソコンで見たときのみ改行 */
    .br-pc {display: none; }


 /* ヘッダー */
/* ヘッダー全体 */
header {
    font-family: 'HiraginoMaru', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10000;
}

/* header-top（ロゴ+情報＋電話+LINEの部分） */
.header-top {
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center;            /* 縦中央揃え */
  padding: 5px;
  gap: 5px;
}

/* 左側（ロゴ + クリニック情報） */
.header-left {
  display: flex;
  align-items: center;            /* 縦中央揃え */
  gap: 2px;
}

/* ロゴ */
.header-logo {
  max-width: 60px;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  height: auto;
}

/* クリニック情報 */
.header-clinic-info {
  display: flex;
  flex-direction: column;
  justify-content: center;        /* 縦中央揃え */
  align-items: center;            /* 横中央揃え */
  text-align: center;
  min-width: 150px;               /* 必要に応じて調整してください */
}

.clinic-address {
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 9px;
  color: #555;
  margin-bottom: 2px;
}

.clinic-name02 {
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
}

/* 右側（電話番号 + LINE） */
.header-contact {
  display: flex;
  align-items: center; /* 縦中央揃え */
  gap: 5px;
  flex-shrink: 0;
    margin-top: 5px;
}

/* 電話番号部分 */
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: center;            /* テキスト中央揃え */
  white-space: nowrap;
}





.header-phone a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 30px;
}

.icon {
  border-radius: 10%;
  padding: 8px;
  color: #fff;
  background-color: #376bb6;
  margin-top: -10px;
}
/* LINEアイコン */
.header-line img {
  width: 50px;
  height: auto;
  margin-top: -5px;
}



.sidemenu {
  font-family: 'HiraginoMaru', sans-serif;
  height: 100%;
  padding-top: 100px;
  position: fixed;
  left: -30%; /*メニュー幅*/
  top: 0;
  z-index: 0;
  transition: all 0.6s;
  width: 30%; /*メニュー幅*/
  background-color: rgba(255, 255, 255, 0.9);
}

.sidemenu nav ul li {
  padding: 20px;
}

.sidemenu nav ul li a{
  color: #4d4d4d;
 text-decoration: none;
}


.hamburger {
 background: linear-gradient(to left, #03a8dd ,#366eb8);
  border-radius: 10%;
  cursor: pointer;
  height: 50px;
  position: relative;
  top: -5px;
  width: 50px;
  z-index: 10001;
}
.hamburger span {
  align-items: center;
  background-color: #fff;
  height: 3px;
  left: 10px;
  position: absolute;
  transition: all 0.6s;
  width:30px;
}
.hamburger_linetop {
  top: 15px;
}
.hamburger_linecenter {
  top: 25px;
}
.hamburger_linebottom {
  top: 35px;
}
/*------------------------------------
メニュークリックした後 ↓
------------------------------------*/
body.nav_open .sidemenu {
  left: 0;
}
.nav_open .hamburger_linetop {
  top: 26px;
  transform: rotate(45deg);
}
.nav_open .hamburger_linecenter {
  left: 50%;
  width: 0;
}
.nav_open .hamburger_linebottom {
  top: 26px;
  transform: rotate(-45deg);
}
.nav_open .overlay {
  opacity: 0.8;
  visibility: visible;
}
/*------------------------------------
メニュークリック後メニュー外の背景 ↓
------------------------------------*/
.overlay {
  cursor: pointer;
  height: 100vh;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;

}

  .sp_no {
    display: none;
  }
  .sidemenu {
    font-family: 'HiraginoMaru', sans-serif;
    padding-top: 100px;
    position: fixed;
    transition: all 0.6s;
    background-color: rgba(255, 255, 255, 0.9);
    height: 100%;
    font-size: 18px;
    top: 0;
    bottom: 0;
    left: -80%; /*メニュー幅*/
    width: 80%; /*メニュー幅*/
  }

  /*ヘッダー*/
    
    






/* TOP画像 */
.main-wrapper {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* 左半分を背景スライダーに */
.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* スライド画像 */
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* スライダー幅に合わせて100% */
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide-img.active {
  opacity: 1;
}


#logo_top  {
  text-align: center;
  margin: 50px auto 20px auto;
}

#logo_top img {
  width: 180px;
  
}

 #setsumei{
  margin-bottom: 50px;
}

 #setsumei p{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
  line-height: 30px;
 text-align: center;
}


.button-43 {
  font-family: 'HiraginoMaru', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin:50px auto  80px auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to left, #03a8dd ,#366eb8);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-43:hover {
  opacity: 0.8;
}


/* TOP画像 */

  /* お知らせ */
#oshirase{
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  padding: 30px 0;
  background-color: #f0f5f9;
}


h2{
  font-family: "Noto Sans JP", sans-serif;
text-align: center;
 margin: 0 auto ;
  max-width: 40%;
  font-size: 30px;
  color: #366eb8;
  border-bottom: solid 1px#366eb8;
}


.button-44 {
font-family: 'HiraginoMaru', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:30px auto 0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to left, #03a8dd ,#366eb8);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
}

.button-44 a{
   color: #fff;
    text-decoration: none;
}


#oshiraselist {
  font-family: "Noto Sans JP", sans-serif;
  padding: 30px 0 0 0 ;
  max-width: 90%;
  margin: 0 auto;
}

.oshirase-item {
  padding: 20px 0;
  border-bottom: 1px dotted #444;
}

.oshirase-item:last-child {
  border-bottom: none; /* 最後のアイテムだけ線なしに */
}


.oshirase-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 6px;
  color: #444;
}

.hiduke {
  color: #444;
}

.category {
  color: #366eb8;
  border: 1px solid #366eb8;
  padding: 10px;
  font-size: 15px;
}

.naiyou {
  color: #366eb8;
  font-size: 15px;
  line-height: 30px;
  padding-left: 2px;
  padding-bottom: 10px;
}

 /* お知らせ */



/* 診療のご案内 */

#shinryou{
  padding: 0 0 30px 0;
}


h3{
 font-family: "Noto Sans JP", sans-serif;
text-align: center;
 margin:  30px auto;
  max-width: 50%;
  font-size: 30px;
  color: #366eb8;
  border-bottom: solid 1px#366eb8;
}

#category01 ul {
  font-family: 'HiraginoMaru', sans-serif;
  display: flex;
  justify-content: center;
max-width: 100%;
}



#category02{
  margin: 15px  5px;
}

#title{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
  display: flex;
  justify-content: center;
  border: solid 2px #4bbce8;
  padding:0 10px;
     width: 180px;
  max-width: 100%;
  background-color: #e5f5fc;
}

#title li img{
  width: 60px;
  padding-top: 10px;
}

#title  li p{
  padding-left: 5px;
}

#title02{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
  display: flex;
  justify-content: center;
  border: solid 2px #22c2b4;
  padding:0 10px;
   width: 180px;
  max-width: 100%;
  background-color: #edf8f7;
}

#title02 li img{
  width: 60px;
  padding-top: 10px;
}

#title02  li p{
  padding-left: 5px;
}

#title03{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
  display: flex;
  justify-content: center;
  border: solid 2px #e5c76d;
  padding:0 10px;
   width: 180px;
  max-width: 100%;
  background-color: #fcf9ee;
}

#title03 li img{
  width: 60px;
  padding-top: 10px;
}

#title03  li p{
  padding-left: 5px;
}

#title04{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 20px;
  display: flex;
  justify-content: center;
  border: solid 2px #f58a8d;
  padding:0 10px;
     width: 180px;
  max-width: 100%;
  background-color: #fcf3f4;
}

#title04 li img{
  width: 60px;
  padding-top: 10px;
}

#title04  li p{
  padding-left: 5px;
}


#category02 nav{
  align-items: center;
  display: flex;
  justify-content: left;
  margin-left: 5px;
}


#title05{
  border-radius: 3%;
  align-items: center;
  font-family: 'HiraginoMaru', sans-serif;
  display: flex;
  justify-content: center;
  border: solid 2px #ebb278;
  padding:0 10px;
  max-width: 100%;
  background-color: #fef2e6;
}

#main{

  font-size: 15px;
}

#sub{
  font-family: 'HiraginoMaru', sans-serif;
  margin-left: 15px;
  font-size: 14px;
}

#title05 li img{
  width: 60px;
  padding-top: 10px;
}

#list{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 18px;
  margin-top: 10px;
 max-width: 100%;
 border: dotted  1px #4d4d4d;
  padding: 10px;
}

#list02{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
  margin: 10px auto 0 auto;
  max-width: 100%;
  border: dotted  1px #4d4d4d;
  padding: 10px 5px;
}



  /* 診療のご案内 */


 /* 診療時間 */

#shinryou02{
  font-family: "Noto Sans JP", sans-serif;
  padding: 30px 0;
  background-color: #f0f5f9;
}

h4{
  text-align: center;
 margin: 0 auto  30px auto;
  max-width: 100%;
  font-size: 30px;
  color: #366eb8;
  border-bottom: solid 1px#366eb8;
}

#shinryoutitle{
  display: flex;
  justify-content: center;

  margin: 0 auto;
}

#shinryoutitle p{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 17px;
  margin: 20px 0 0 20px;
  color: #366eb8;
}

 /* 表 */


#hyou table{
   background-color: #fff;
font-family: 'HiraginoMaru', sans-serif;
  border-collapse: collapse;
  border-spacing: 0;
  width: 90%;
  margin: 0 auto;
  font-size: 15px;
}

  #hyou table tr{
  border: solid 1px #4d4d4d;
  cursor: pointer;
}

#youbi{
  background-color: #d7e1ef;
}


#hyou table th,   #hyou table td{
  border: solid 1px #4d4d4d;
  text-align: center;
  width: 10%;
  padding: 10px 0;
}

#setsumei02{
  margin-top: 20px;
font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
  line-height: 30px;
 text-align: center;
 color: #4d4d4d;
}

#setsumei02 a{
 color: #4d4d4d;
}




#setsumei03{
  margin: 30px 0 40px 20px;
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 15px;
  line-height: 30px;
  text-align: left;
 color: #4d4d4d;
}

#setsumei03 a{
 color: #4d4d4d;
 border-bottom:  solid 1px #4d4d4d;
}


.button-45 {
font-family: 'HiraginoMaru', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 20px auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
     background: linear-gradient(to left, #03a8dd ,#366eb8);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-45 a{
   color: #fff;
    text-decoration: none;
}


/* 診療時間 */



/* アクセス */

iframe{
  height: 300px;
  width: 95%;
}

#chizu{
  text-align: center;
  margin: 0 auto;
}

/* アクセス */



/* フッター */
.footer-2 {
  font-family: 'HiraginoMaru', sans-serif;
  position: relative; /* LINEアイコンの絶対位置の基準 */
  max-width: 100%;
  color: #4d4d4d;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0px 0px;
  background-color: #f0f5f9;
}

/* フッター内リスト */
.footer-2__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0 0 0.5em 0;
  padding: 0.5em 0;
  width: 100%;
  max-width: 600px;
}

/* ロゴとテキストをまとめる */
.logo-and-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ロゴ画像 */
#logo_footer img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0;
}

/* テキスト */
.footer-2__text {
  font-size: 12px;
  line-height: 30px;
  text-align: left;
  max-width: 300px;
}

/* クリニック名 */
.clinic-name {
  font-size: 20px;
}


/* リンク */
.footer-2__text a {
  color: #4d4d4d;
  text-decoration: none;
}

/* 表 */
#table02 {
  width: 90%;
  background-color: #fff;
  font-family: 'HiraginoMaru', sans-serif;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto 20px auto;
  font-size: 15px;
}

#table02 tr {
  border: 1px solid #4d4d4d;
}

#youbi {
  background-color: #d7e1ef;
}

#table02 th,
#table02 td {
  border: 1px solid #4d4d4d;
  text-align: center;
  width: 10%;
  padding: 3px 0;
}

/* 著作権表示 */
.footer-2__copyright {
  max-width: 100%; 
  width: 100%; 
  padding: 20px 0;
  text-align: center;
  background: linear-gradient(to left, #03a8dd, #366eb8);
  margin: 0;
  color: #fff;
  font-weight: 200;
  font-size: 0.8em;
}

/* LINEアイコン */
.line-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 1000;
}

.line-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* フッター */

  }
