/* 全体の基本スタイル */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-feature-settings: "palt" 1, "kern" 1;
  overflow-x: hidden;
}



/* 固定ヘッダーの設定 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px; /* ← ヘッダーの高さをここで調整 */
  z-index: 1000;
  background-color: #fff; /* 必要に応じて背景色 */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 任意の影効果 */
}

/* 本文の開始位置を調整 */
main {
  padding-top: 80px; /* ← ヘッダーの高さと同じ値にすることで隠れない */
}



/* カレンダーセクション */
.calendar {
  padding: 40px 20px;
  text-align: center;
}

/* タイトル（共通化） */
.calendar-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 10px;
}

/* 補足文 */
.calendar-note {
  font-size: 1rem;
  margin-top: 20px;
  color: #ccc;
}

/* カレンダー表 */
.calendar-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px auto;
  border-collapse: collapse;
  font-size: 1rem;
}

/* セル基本 */
.calendar-table th,
.calendar-table td {
  border: 1px solid #444;
  width: 14.2%;
  height: 100px;
  vertical-align: top;
  padding: 6px;
  box-sizing: border-box;
}

/* 曜日ヘッダー */
.calendar-table thead th.weekday {
  font-size: 1.6rem;
  line-height: 1.2;
  height: 40px;
  letter-spacing: 0.05em;
  background-color: #111;
  font-weight: normal;
}

/* 定休日セル */
.calendar-table td.closed {
  background-color: #222;
  color: #aaa;
}

/* 日付数字 */
.calendar-table td .day-number {
  font-size: 1.6rem;
  color: #fff;
}

/* 補足文 */
.calendar-table td .note {
  font-size: 1rem;
  color: black;
  margin-top: 6px;
  background-color: #fce4ec;
  padding: 2px 4px;
  border-radius: 4px;
}

/* 角丸 */
.calendar-table th:first-child {
  border-top-left-radius: 6px;
}
.calendar-table th:last-child {
  border-top-right-radius: 6px;
}
.calendar-table tr:last-child td:first-child {
  border-bottom-left-radius: 6px;
}
.calendar-table tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .calendar-table {
    font-size: 0.85rem;
  }

  .calendar-table th,
  .calendar-table td {
    height: 80px;
    padding: 4px;
  }

  .calendar-title {
    font-size: 1.6rem;
    text-align: left;
    padding-left: 10px;
  }

  .calendar-note {
    font-size: 0.9rem;
  }

  .calendar-table td .day-number {
    font-size: 1.3rem;
  }

  .calendar-table td .note {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .calendar-table th,
  .calendar-table td {
    height: auto;
    min-height: 60px;
  }

  .calendar-title {
    font-size: 1.4rem;
    text-align: left;
    padding-left: 10px;
  }

  .calendar-table td .day-number {
    font-size: 1.1rem;
  }

  .calendar-table td .note {
    font-size: 0.85rem;
  }
}

/* 日曜日（赤） */
.calendar-table td.sunday .day-number {
  color: #ff4d4d;
}

/* 土曜日（青） */
.calendar-table td.saturday .day-number {
  color: #4d88ff;
}

/* 祝日（赤） */
.calendar-table td.holiday .day-number {
  color: #ff4d4d;
}

/* ホバー効果を完全に無効化（全セル対象） */
.calendar-table td:hover {
  background-color: transparent !important;
  cursor: default !important;
  transition: none !important;
}

@media screen and (max-width: 600px) {
  .hamburger {
    top: 60px;     /* 例：上から70pxに変更 */
    right: 25px;   /* 例：右から10pxに変更 */
    transform: scale(0.9);
  }
}

/* 電話リンク（スマホのみ表示） */
.mobile-call-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .mobile-call-only {
    display: block !important;
  }
}