@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; }


 /* ヘッダー */
/* ヘッダー全体 */
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;
}




/* ヘッダー */




 /* 診療のご案内 */

#shinryou{
  padding: 20px 0 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;
}



/* 診療のご案内 */


/* フッター */
/* ===== 全体 ===== */
.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: "Noto Sans JP", 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;
}

/* フッター */


/* パンくずリスト */
.breadcrumb-001 {
    margin: 12% auto 0 auto;
    max-width: 50%;
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    font-size: .9em;
}

.breadcrumb-001 li {
    display: flex;
    justify-content: left;
    align-items: center;
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}

.breadcrumb-001 a {
    color: #333333;
    text-decoration: none;
}
/* パンくずリスト */


/* 医院紹介title */
#shoukaititle{
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  max-width: 50%;
  margin: 20px auto 0 auto;
}

h2{
  font-family: "Noto Sans JP", sans-serif;
 margin: 0 auto  30px auto;
  padding-left: 10px;
  font-size: 30px;
  color: #366eb8;
  border-left: solid 2px#366eb8;
}

#setsumei{
  max-width: 43%;
  margin: 0 auto;
}
 #setsumei p{
  font-family: 'HiraginoMaru', sans-serif;
  font-size: 18px;
  line-height: 30px;
 text-align: left;
}

/* 医院紹介title */

 
  
/* アクセス */
#setsumei02{
  margin: 20px 0;
 font-family: 'HiraginoMaru', sans-serif;
  font-size: 18px;
  line-height: 30px;
 text-align: center;
 color: #4d4d4d;
}

#setsumei02 a{
 color: #4d4d4d;
}


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

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


.button-45 {
font-family: 'HiraginoMaru', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 40px 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;
}


/* アクセス */



  }









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

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

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


 /* ヘッダー */
/* ヘッダー全体 */
header {
  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{
   text-decoration: none;
  color: #4d4d4d;
}



.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%; /*メニュー幅*/
  }

  /*ヘッダー*/
    



 /* 診療のご案内 */

#shinryou{
  padding:0px 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;
}



  /* 診療のご案内 */





/* フッター全体 */
.footer-2 {
  position: relative; /* LINEアイコンの絶対位置の基準 */
  font-family: 'HiraginoMaru', sans-serif;
  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: "Noto Sans JP", 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 {
  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: 30px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 1000;
}

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

/* フッター全体 */



/* 医院紹介title */
#shoukaititle{
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  margin: 35% 0 0 20px;
}

h2{
  font-family: "Noto Sans JP", sans-serif;
 margin: 0 auto  0px auto;
  padding-left: 10px;
  font-size: 30px;
  color: #366eb8;
  border-left: solid 2px#366eb8;
}
 #setsumei{
  margin-bottom: 50px;
}

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


/* 医院紹介title */



/* アクセス */
#setsumei02{
  margin: 20px 0;
font-family: 'HiraginoMaru', sans-serif;
  font-size: 17px;
  line-height: 30px;
 text-align: center;
 color: #4d4d4d;
}

#setsumei02 a{
 color: #4d4d4d;
}


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

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


.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;
}


/* アクセス */
}
