body {
  background: #f9f9f9;
  font-family: sans-serif;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.section label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}


.section div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

input[type="checkbox"] {
  margin-right: 5px;
}

button {
    display: block;
    margin: 5px auto;
    padding: 12px 25px;
    font-size: 17px;
    width: 90%;
    max-width: 350px;
    box-sizing: border-box;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
    background-color: #fc8739;
    color: #FFFFFF;
    border: 1px solid #fc8739;
    box-shadow: 0 2px 5px rgba(255, 165, 0, 0.4);
    cursor: pointer;
}

button:hover {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(255, 140, 0, 0.3);
    transform: translateY(-2px);
}




#areaInput::placeholder {
  font-style: italic;
  color: #aaa; 
}
















  .link { transition: transform 0.15s; }

  .gallery-link:hover .link {
    transform: translateY(-3px);
    box-shadow: 0 2px 5px rgba(37, 31, 20, 0.4);
  }




#menu-image {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  display: block;
  margin: 20px auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#menu-message {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2em;
}


#ranking-section {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box; /* 중요 */
}
