/*==================================================================================================================================

  *ヘッダーメニュー

==================================================================================================================================*/
ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

/* headとnavを横並びにするためのスタイル */
.header-container {
    position: fixed; /* 上部に固定 */
    top: 0;
    width: 100%;
    z-index: 1000; /* 他のコンテンツの上に表示されるようにする */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 少し影を追加して浮かせる効果を追加 */
}

.head {
    display: flex;
    flex-direction: column; /* 縦方向に配置 */
    align-items: center; /* 中央揃え */
}

.head_ttl {
    font-size: 12px;
    color: #40372d;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin-left: 20px;
    margin-top: -20px; /* ロゴとの間隔を調整 */
    margin-bottom: 10px; /* ロゴとの間隔を調整 */
    text-align: center; /* テキストを中央揃え */
}

.head_logo img {
    height: 45px; /* ロゴの高さを調整 */
    margin-top: 0px; /* ロゴ上部の余白を調整 */
	margin-bottom: -10px;
    margin-left: 50px;
}
/* モバイル版での調整 */
@media (max-width: 768px) {
    .head_ttl {
        font-size: 12px; /* フォントサイズを小さくする */
        margin-left: 20px; /* 左側の余白を少し減らす */
        margin-top: -20px;  /* 上の隙間を少し広げる */
        margin-bottom: 0px; /* 下の隙間も少し広げる */
    }
}
/* モバイル版で非表示にするスタイル */
@media (max-width: 768px) {
    .header-container {
        display: none;
    }
}

/* ナビゲーションのスタイル */
#nav {
    flex-grow: 1;
    background: #fff;
    padding: 0;
}

#nav .header_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

/* メニュー項目が一列に並ぶように設定 */
#nav .header_menu > li {
    flex: 1;
    text-align: center;
    padding: 5px 10px;
}

#nav .header_menu > li > a {
    display: block;
    padding: 10px 8px;
    color: #40372d;
    border-right: 1px solid #d2d1c8;
    box-sizing: border-box;
    height: auto;
    line-height: 1.5;
}

/* 最後のメニュー項目の右ボーダーを削除 */
#nav .header_menu > li:last-child > a {
    border-right: none;
}

/* レスポンシブデザインの調整 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    #nav .header_menu {
        flex-direction: column;
        width: 100%;
    }

    #nav .header_menu > li {
        width: 100%;
        text-align: left;
    }
}


#nav .header_menu>li {
    flex: 1 1 100px;
    /* 各メニュー項目の初期幅を調整 */
    min-width: 100px;
    /* 各メニュー項目の最小幅を設定 */
    max-width: 140px;
    /* 各メニュー項目の最大幅を設定 */
    position: relative;
    padding: 5px 0;
    text-align: center;
    box-sizing: border-box;
}

#nav .header_menu>li>a {
    display: block;
    padding: 10px 8px;
    /* パディングを調整 */
    color: #40372d;
    border-right: 1px solid #d2d1c8;
    position: relative;
    box-sizing: border-box;
    height: auto;
    /* 高さを自動調整 */
    line-height: 1.5;
    /* 行の高さを調整して被らないようにする */
    font-family: 'Zen Maru Gothic', sans-serif;
    /* クリックする前のフォントを指定 */
    font-size: 17px;
}

#nav .header_menu>li:last-child>a {
    border-right: none;
}

#nav .header_menu>li:hover>a {
    color: #fff;
    background: #ECA64F;
    /* ホバー時の背景色をECA64Fに変更 */
}

#nav .header_menu>li:hover>a span {
    color: #fff;
}

#nav .header_menu>li>.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fdfdf8;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 1000px;
    /* サブメニューの幅を設定 */
    padding: 20px;
    /* サブメニューのパディングを設定 */
    box-sizing: border-box;
}

#nav .header_menu>li:hover>.sub-menu {
    display: flex;
    justify-content: space-between;
    /* サブメニュー項目の間隔を均等に設定 */
}

#nav .header_menu>li>.sub-menu>.sub-menu-section {
    position: relative;
    width: 30%;
    /* サブメニュー項目の幅を設定 */
}

#nav .header_menu>li>.sub-menu>.sub-menu-section .section-title {
    padding: 10px 20px;
    color: #666;
    font-weight: bold;
    background: #fff;
    border-bottom: 2px solid #ECA64F;
    /* ボトムボーダーをECA64Fに変更 */
    margin-bottom: 10px;
    font-family: 'Zen Maru Gothic', sans-serif;
    /* クリックする前のフォントを指定 */
}

#nav .header_menu>li>.sub-menu>.sub-menu-section>.sub-menu>li>a {
    padding: 5px 0;
    color: #40372d;
    background: none;
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    /* クリックする前のフォントを指定 */
}

#nav .header_menu>li>.sub-menu>.sub-menu-section>.sub-menu>li:hover>a {
    background: #ECA64F;
    /* ホバー時の背景色をECA64Fに変更 */
    color: #fff;
}

#nav .header_menu>li>.sub-menu>.sub-menu-section>.sub-menu>li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* 追加 */
#nav .header_menu>li>.sub-menu1>li:hover {
    background: #ECA64F;
    /* ホバー時の背景色をECA64Fに変更 */
    color: #fff;
}

#nav .header_menu>li:hover>.sub-menu1 {
    display: block;
}

#nav .header_menu>li>.sub-menu1 {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fdfdf8;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 300px;
    padding: 10px 5px;
    box-sizing: border-box;
}

#nav .header_menu>li>.sub-menu1>li>a {
    padding: 5px 0;
    color: #40372d;
    background: none;
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    /* クリックする前のフォントを指定 */
    font-size: 17px;
}

#nav .header_menu>li>.sub-menu1>li>a:hover {
    background: #ECA64F;
    /* ホバー時の背景色をECA64Fに変更 */
    color: #fff;
}

/* 日本語の下に英語を表示するスタイル */
#nav .header_menu>li>a span.nav_span {
    display: block;
    font-size: 12px;
    color: #ECA64F;
    /* テキストカラーをECA64Fに変更 */
    margin-top: 5px;
}

/* スクロールのためのコンテンツを追加 */
.content {
    height: 2000px;
    background: #f0f0f0;
    padding-top: 140px; /* ヘッダーの高さ分だけコンテンツを下げる */
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    #nav .header_menu {
        flex-direction: column;
    }

    #nav .header_menu>li {
        width: 100%;
    }

    #nav .header_menu>li>a {
        border-right: none;
        border-bottom: 1px solid #d2d1c8;
    }

    #nav .header_menu>li:last-child>a {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    #nav {
        display: none;
    }
}

/* ロゴ画像のスタイルを追加 */
.logo img {
    height: 30px;
    /* 必要に応じて高さを調整 */
}

/* デスクトップ用メディアクエリ */
@media (min-width: 769px) {
    .header__nav-area {
        display: none;
    }

    /* デスクトップ版ではロゴを非表示にする */
    .logo {
        display: none;
    }
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* 子要素を左右に配置 */
    align-items: center;
    padding: 0 20px;
}

/*==================================================================================================================================

  *ハンバーガーメニュー

==================================================================================================================================*/
/* ----------------------------------------------------
スマホ用（〜767px）
---------------------------------------------------- */
@media (max-width: 768px) {
/* ハンバーガーアイコン */
.drawer-hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ECA64F;
  width: 60px;
  height: 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  cursor: pointer;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.drawer-hamburger-icon {
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
  top: 8px;
}
span.menu_txt {
  top: 12px;
  position: relative;
}
.drawer-hamburger-icon::before,
.drawer-hamburger-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.drawer-hamburger-icon::before {
  top: -8px;
}
.drawer-hamburger-icon::after {
  top: 8px;
}
.menu_txt::before {
  content: 'MENU';
  font-size: 10px;
  margin-top: 6px;
}
#drawer-checkbox:checked + #drawer-icon .drawer-hamburger-icon {
  background: transparent;
}
#drawer-checkbox:checked + #drawer-icon .drawer-hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}
#drawer-checkbox:checked + #drawer-icon .drawer-hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
#drawer-checkbox:checked + #drawer-icon .menu_txt::before {
  content: 'CLOSE';
}

/* メニュー全体 */
#drawer-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
	position: fixed; 
	top: -100px; 
	left: -9999px;
}
#drawer-content {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fffef7;
  z-index: 10000;
  overflow-y: auto;
  padding: 2rem 1rem;
}
#drawer-checkbox:checked ~ #drawer-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ベース装飾 */
.drw_index {
  font-weight: bold;
  font-size: 1.2em;
  margin: 1.5em 0 0.5em;
  color: #ECA64F;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.com_sp_menu li,
.com_medical li {
	margin-bottom: 0.6em;
	font-size: 1rem;
}

/* com_sp_menu内のリンクの文字色 */
.com_sp_menu a {
  color: #444; /* リンクのデフォルト色（グレー） */
  text-decoration: none; /* リンクの下線を消す */
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* com_sp_menu内のリンクの文字色 */
.com_medical a {
  color: #444; /* リンクのデフォルト色（グレー） */
  text-decoration: none; /* リンクの下線を消す */
  font-family: 'Zen Maru Gothic', sans-serif;
}

li.littl {
	font-size:1.2rem;
	font-weight:600;
    color: #444;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.com_sp_menu li:not(.littl),
.com_medical li:not(.littl) {
  position: relative;
  padding-left: 1.4em;
  list-style: none;
}

.com_sp_menu li:not(.littl)::before,
.com_medical li:not(.littl)::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  background-color: #ECA64F;
  border-radius: 50%;
}

.tel {
  font-size: 1em;
  margin-top: 1.5em;
}

.drw_info .schedule-table{
  margin: 10px 0;
}
.telp {
  font-size: 1.5rem;
}
.telp i {
  margin: 0 5px 0 0;
}
.web-reserve a {
  display: inline-block;
  font-size: 1.2rem;
  margin-top: 0.5em;
  background: #ECA64F;
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 30px;
  text-decoration: none;
}
/* 診療案内（横並び） */
.drw-medical{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* SP: 2列 */
  gap: 0.6em 1.2em;
  margin: 0.6em 0 1.2em;
  padding-left: 0; /* ULの左右余白を詰める */
  list-style: none;
}

/* ドット位置の微調整（既存ルールを踏襲） */
.drw-medical li{
	position: relative;
	padding-left: 1.4em;
	font-size: 1rem;
}
.drw-medical li::before{
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  background-color: #ECA64F;
  border-radius: 50%;
}
}
/* ============ PC(デスクトップ)では非表示 ============ */
.drawer-hamburger,
#drawer-content {
  display: none;        /* PCではハンバーガーもドロワーも出さない */
}

/* ============ SPだけ表示 ============ */
@media (max-width: 768px){
  .drawer-hamburger {
    display: flex;      /* ここで表示（あなたの既存スタイルが効く） */
  }
  #drawer-content {
    display: block;     /* ドロワーの土台を出す（checkedで開閉） */
  }
}
.footer-schedule {
  text-align: center;
  flex-grow: 1;
  margin: 0 20px;
  padding: 15px;
  border-radius: 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.footer-schedule .h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.schedule-table th, .schedule-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.schedule-table th {
  background: linear-gradient(to bottom, #ECA64F, #D88E3F);
  color: #fff;
  font-weight: bold;
}

.schedule-table td {
  background: #fff;
  color: #666;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.schedule-table .sat {
  color: #ECA64F;
  font-weight: bold;
}

.schedule-table .closed {
  background: #eee;
  color: #ECA64F;
}

.note {
  font-size: 12px;
  margin-top: 5px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

address {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem; /* フォントサイズ */
    color: #333; /* フォントカラー */
    line-height: 1.5; /* 行間の調整 */
}

@media (max-width: 768px) {
  .footer-schedule {
      margin: 15px 0;
      padding: 0;
  }

  .schedule-table th, .schedule-table td {
      font-size: 12px;
      padding: 6px;
  }
}