/* CSS Button - Create Item (替代 create-item.png) */
.btn-create-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #6B9B37;
  border-radius: 50%;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

.btn-create-item:hover {
  background-color: #5C8A2F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-create-item:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-create-item span {
  display: block;
}
