main {
    max-width: 100%;
}

/* スマホ版メニューを表示 */
.nav-desktop {
    display: none;
}

.nav-mobile {
    display: block;
}

.nav-mobile-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
  z-index: 1000; /* 他の要素より前面に表示 */
}

.nav-mobile-modal.active {
  display: block;
}

.nav-mobile-items {
  background-color: white;
  list-style-type: none;
  padding: 20px;
  margin: 0;
  position: absolute;
  top: 60px;  /* 画面上部から60pxの位置に配置 */
  left: 0;    /* 左端に配置 */
  right: 0;   /* 右端まで広げる */
  transform: none;  /* 中央配置用のtransformを削除 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 5px 5px;  /* 下部のみ角丸に */
}

.nav-mobile-icon {
  cursor: pointer;
}

.nav-mobile-items.active {
  display: block;
}

.nav-mobile-icon.open {
  /* ここにアイコンが開いているときのスタイルを追加 */
  /* 例えば、アイコンを「×」に変更するなど */
  content: '\2715'; /* Unicode for '×' */
}