body {
  margin: 0;
  font-family: sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #eee;
}

header .logo {
  font-weight: bold;
}

header .menu {
  font-size: 24px;
  cursor: pointer;
}

.main-visual img {
  width: 100%;
  height: auto;
}

section {
  padding: 40px 20px;
  text-align: center;
}

.char-images img {
  width: 30%;
  margin: 10px;
}


.products {
  padding: 40px 20px;
  text-align: center;
}

.product-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* 画像の間隔 */
}

.product-slider img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

.product-slider button {
  font-size: 24px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.product-slider button:hover {
  background-color: #f0f0f0;
}


.extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.extras-left, .extras-right {
  flex: 1 1 300px;
}

.extras-right img {
  width: 100%;
  height: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eee;
  padding: 20px;
}

footer .contact {
  cursor: pointer;
}


ul {
  display: flex;
  justify-content: center;
}

li {
  list-style: none;
}

li:nth-child(2) {
  margin: 0 10px;
}