body {
  background: #f5eeee;
  color: #333;
}
/* テキスト装飾 */
.title {
  text-align: center;
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: bold;
}
.content .food-name {
  text-align: center;
  padding: 15px 0;
  font-size: 1.2rem;
}

.msg {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: normal;
  padding: 20px 0 20px 20px;
}
.msg-wrapper {
  width: 75%;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* レイアウト */
.main {
  width: 640px;
  margin: 0 auto;
}
.wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.grid-selected {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

/* 食べ物アイコン */
.content {
  margin: 15px 15px 20px 15px;
}
.content_img {
  width: 120px;
  height: 120px;
  margin: 5px;
  border-radius: 100px;
}

.content_img img {
  width: 100%;
  padding: 15px;
}
.yellow .content .content_img {
  background: #eeee52;
}

.red .content .content_img {
  background: #ed7b51;
}
.green .content .content_img {
  background: #51ed73;
}
/* 選択したらボーダーを追加 */
input[type="checkbox"]:checked + .content_img {
  border: 5px solid #5b6adb;
}

.empty {
  width: 120px;
  height: 120px;
  margin: 5px;
  border-radius: 100px;
}
.yellow-dot {
  border: #ecec22 dotted 10px;
}
.red-dot {
  border: #ed7b51 dotted 10px;
}
.green-dot {
  border: #51ed73 dotted 10px;
}

/* チェックボックス */
/* input[type="checkbox"] {
  all: revert;
} */

/* ボタン */
.btn-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
.btn {
  background: #5b6adb;
  color: white;
  padding: 15px 20px;
  font-size: 1.5rem;
  border-radius: 20px;
  margin: 0 40px;
  box-shadow: 2px 2px 4px #686666;
}
.btn:hover {
  opacity: 0.8;
}

/* スマイリー */
.smile {
  width: 25%;
}
.smile img {
  width: 100%;
}

/* テスト */
.test:checked + .test-text {
  color: red;
}
