body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

header {
  background-color: #4CAF50;
  color: white;
  padding: 20px;
  font-size: 24px;
  text-align: center;
}

.container {
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.item {
  padding: 10px;
}

.item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* ハンバーガーメニューのスタイル */
.menu-container {
  position: relative;
}

.menu-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  border-radius: 5px;
}

.menu-icon img {
  border-radius: 50%;
}

/* wovn-languagesを非表示に */
.menu-icon > .wovn-languages {
  display: none !important;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 120px;
  margin-top: 8px;
  padding: 0;
  z-index: 1000;
}

/* showクラスで表示 */
.menu-icon > .wovn-languages.show {
  display: block !important;
}

/* WOVNが自動生成するul要素 */
.wovn-languages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* WOVNが自動生成するli要素 */
.wovn-languages li {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.wovn-languages li:last-child {
  border-bottom: none;
}

.wovn-languages li:first-child {
  border-radius: 4px 4px 0 0;
}

.wovn-languages li:last-child {
  border-radius: 0 0 4px 4px;
}

/* WOVNが自動生成するリンク */
.wovn-languages li a {
  display: block;
  padding: 8px 12px !important;
  color: #333 !important;
  text-decoration: none !important;
  transition: background-color 0.2s;
  cursor: pointer;
  font-size: 13px !important;
  line-height: 1.4;
}

.wovn-languages li a:hover {
  background-color: #f5f5f5;
}

/* wovn-switchクラス用（手動で定義した場合） */
.wovn-languages .wovn-switch {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  text-align: left;
  line-height: 1.4;
}

.wovn-languages .wovn-switch:last-child {
  border-bottom: none;
}

.wovn-languages .wovn-switch:hover {
  background-color: #f5f5f5;
}

.wovn-languages .wovn-switch:first-child {
  border-radius: 4px 4px 0 0;
}

.wovn-languages .wovn-switch:last-child {
  border-radius: 0 0 4px 4px;
}