/* 固定メニュー */
#fixed-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  z-index: 100;
}

.bottom-menu {
  list-style-type: none;
  margin: 0;
  padding:0;
  text-align: center;
  overflow : hidden;
}

.bottom-menu ul{
overflow : hidden;
}

.bottom-menu li {
  display: inline-block;
  margin: 10px 5px 5px 5px;
  width:20%;
}
.bottom-menu li span{
  line-height: 1.4em; 
}

.bottom-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

/* サイドメニュー */
#side-menu {
  position: fixed;
  top: 0;
  right: -330px;  /* 最初は画面外 */
  width: 330px;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.5); /* 白の半透明 */
  transition: right 0.3s ease-in-out;
  z-index: 200;
  overflow-y: auto; /* 縦スクロールを追加 */
  overflow-x: hidden; /* 横スクロールを非表示に */
}
#side-menu h3 {
  background-color: #222;     /* ダークグレーに近い黒 */
  color: #fff;                /* 文字は白 */
  padding: 1rem;              /* 内側に余白を追加 */
  margin: 0;                  /* 外側の余白はなくす（必要なら調整） */
  font-size: 1.2rem;          /* 少し大きめのフォントサイズ */
  font-weight: bold;          /* 太字で目立たせる */
  border-left: 5px solid #d2a679; /* カフェ系の茶系アクセント */
  border-bottom: 2px solid #444; /* 下線で引き締め効果 */
  letter-spacing: 1px;        /* 文字の間隔を少し広げると現代的に見える */
  text-transform: uppercase;  /* 大文字にするとタイトルっぽくなる（お好みで） */
}
#side-menu ul {
  list-style-type: none;
  margin: 10px;
  padding: 0;
}

#side-menu ul li a {
  color: #333;
  text-decoration: none;
}
.bottom-menu li a:active {
  animation: tap-effect 0.2s ease-out;
}

@keyframes tap-effect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95); /* 少し縮む */
  }
  100% {
    transform: scale(1); /* 元に戻る */
  }
}
.woody li {
  margin: 1%;
  background: url('img/wood-texture.jpg') no-repeat center center; /* 木目調の背景 */
  background-size: cover;
  font-weight: normal;
  font-size: 16px;
  color: #fff; /* 白文字 */
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

#side-menu.active {
  right: 0;  /* 表示される位置 */
}
.fa-lg{ 
padding:10px
;}

/* 各グリッドアイテムのスタイル */
.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;  /* 枠線 */
  border-radius: 8px;  /* 角丸 */
  overflow: hidden;
}

.grid-item img {
  width: 100%;  /* 画像がアイテム内で広がるように */
  height: auto;  /* アスペクト比を保つ */
}
