body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}    
/* SP版ヘッダー用のスタイル */
.sp-nav-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto 5px;
}

/* メニュー開閉時のトランジション */
.menu-overlay {
  transition: opacity 0.3s ease;
}

/* メニュー項目のスタイル */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.menu-item-arrow {
  color: #feef20;
}

/* 電話ボタンのスタイル */
.phone-button {
  background-color: #00a0e9;
  color: white;
  border-radius: 9999px;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
}

/* 予約・問い合わせボタンのスタイル */
.action-button {
  background-color: #feef20;
  border-top: 4px solid black;
  border-bottom: 4px solid black;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* 固定ヘッダー用のスタイル */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: white;
}

/* 固定バナーエリア用のスタイル */
.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

/* メインコンテンツの上下にパディングを追加して、固定ヘッダーとバナーに隠れないようにする */
.main-content {
  padding-top: 140px; /* ヘッダーの高さに合わせて調整 */
  padding-bottom: 80px; /* バナーの高さに合わせて調整 */
}

.icon-home {
   display: inline-block;
   mask-image: url('../images/icon/home.svg');
   mask-repeat: no-repeat;
   mask-position: center;
   mask-size: contain;
   background-color: currentColor; /* Tailwindのtext-color系も使える */
}    
