/* styles.css */
#quiz-area, #result {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  border-radius: 10px;
}

#question {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
}

#choice0, #choice1, #choice2, #choice3 {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.1em;
}

@media (max-width: 600px) {
  #question {
    font-size: 1.2em;
  }

  #choice0, #choice1, #choice2, #choice3 {
    font-size: 1em;
    padding: 8px;
  }
}

#ad-space {
    text-align:center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;  /* 必要に応じて幅を調整します */
    color: #ff6384;
}

hr{
height: 3px;
background-color: #ff6384;
border: none;
color: #ff6384;
}


/* ボタンデザイン */

#twitter-button {
    background-color: #27acd9;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#twitter-button:hover {
    background-color: white;
    color: #27acd9;
    border: 2px solid #27acd9;
}


#facebook-button {
    display: inline-block;
    background-color: #3b5998;
    color: white;
    padding: 10px 20px;
    border: 2px solid #3b5998;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    border-radius: 12px;
}

#facebook-button:hover {
    background-color: white;
    color: #3b5998;
    border: 2px solid #3b5998;
}


#hatena-button {
    display: inline-block;
    background-color: #01a5df;
    color: white;
    padding: 10px 20px;
    border: 2px solid #01a5df;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    border-radius: 12px;
}

#hatena-button:hover {
    background-color: white;
    color: #01a5df;
    border: 2px solid #01a5df;
}





#sitename {
    font-size: 0.5em;  /* パンくずリストのフォントサイズを小さくする */
}

