body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  /* padding: 70px; */
  background: url(img/texture.jpg) center center / cover;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100vh;

}

.container {
  max-width: 100%;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  padding: 40px;
  width: 100%;
}

h1 {
  font-size: 44px;
  color: #000;
  margin-bottom: 0px;
}

.logo {
  color: #000;
  display: flex;
  justify-content: center;
  margin: 0;
  padding-bottom: 10px;
  height: 200px;
  width: 200px;
  margin: 0 auto;
}

.logo span {
  display: inline-block;
  margin: 0 10px;
}

h2 {
  font-size: 32px;
  color: #000;
  margin: 15px 0 30px;
}

.question {
  margin-bottom: 50px;
  width: 80%;
  margin: auto;
}

.options {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.emoji {
  width: 100px;
  height: 100px;
  margin: 0 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.emoji:hover {
  transform: scale(1.2);
}

.labels {
  display: flex;
  justify-content: center;
  font-size: 24px;
  color: #007bff;
  margin-top: 15px;
  width: 100%;
}

.labels span {
  width: 100px;
  text-align: center;
  margin: 0 20px;
}

.hidden {
  display: none;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 20px 30px;
  margin: 15px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

button:hover {
  background-color: #0056b3;
}

.select-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
  /* 項目間の間隔 */
}

.select-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.emoji {
  width: 100px;
  /* 画像サイズを調整 */
  height: 100px;
  margin-bottom: 5px;
}

.select-item span {
  font-size: 18px;
}

.submit {
  font-size: 32px;
  margin-top: 40px;
}

#country-select {
  font-size: 24px;
}

#thankYou {
  font-size: 24px;
}



option.hoge2:before {
  content: url("b.gif");
}

option.hoge3:before {
  content: url("c.gif");
}

#country-select,
.select-items {
  margin-top: 40px;
}


#country-select {
  border: 1px solid black;
  font-size: 32px;
}

.checkbox-list {
  width: 60%;
  margin: 30px auto 0;
  text-align: left;
}

.checkbox-list li {
  margin-bottom: 20px;


}

.submit_btn {
  font-size: 28px;
  border: 1px solid black;
  padding: 5px 20px;

}

#question4 textarea {
  font-size: 28px;
  letter-spacing: 1px;
  margin: 50px auto 0px;
}

#question3 {
  margin-top: 40px;
  margin-bottom: 0;
}

#question4 {
  margin-top: 80px;
}

#question3 p {
  font-size: 20px;
}

#question4 p {
  font-size: 20px;
}

#question2 p {
  font-size: 20px;
}

#thankYou p {
  line-height: 1.5;
}

textarea {
  padding: 10px;
  max-width: 100%;
  line-height: 1.5;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 1px #999;
  display: block;
}

label {
  font-size: 20px;
  border: 1px solid #000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 5px 30px;
  width: 100%;
  display: block;
}

.custom-checkbox {
  display: block;
  cursor: pointer;
  padding: 5px;

  border: 2px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox.checked {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}




/* レスポンシブデザイン用 */
@media (max-width: 600px) {
  .select-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .select-item {
    margin: 5px;
  }
}