#container {
    background: url("https://3ndgame.sakura.ne.jp/root/wp-content/matsesu.png") no-repeat center center;
background-size: cover;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#count {
  display: grid;
  place-content: center;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: 60px;
  gap: 10px;
  margin-bottom: 20px;
}
#councoun div {
  display: grid;
  place-content: center;
  border: solid 2px #444;
  font-size: 24px;
}
#councoun {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
#count div {
  display: grid;
  place-content: center;
  border: solid 2px #444;
  font-size: 24px;
}
.hole {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #d4af37, #b8860b);
    border-radius: 50%;
    border: 4px solid #daa520;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.material-symbols-outlined {
  font-size: 48px;
  color: #444;
  width: 60px;
  height: 60px;margin:0 auto;
 padding: 5px; /* 画像が切れないように余白を作る */
    box-sizing: border-box;
}
#score, #time {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700; /* ゴールド */
    background: linear-gradient(145deg, #8B7500, #FFD700);
    padding: 15px 30px;
    border-radius: 10px;
    border: 3px solid #DAA520;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3), inset 0px 2px 4px rgba(255, 255, 255, 0.4);
    font-family: "Cinzel", serif;
    text-align: center;
    min-width: 80px;
    margin: 10px;
}
#start {
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: linear-gradient(145deg, #B8860B, #FFD700);
    padding: 15px 40px;
    border-radius: 25px;
    border: 3px solid #DAA520;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    font-family: "Cinzel", serif;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* ホバー時のアニメーション */
#start:hover {
    background: linear-gradient(145deg, #FFD700, #B8860B);
    transform: scale(1.1);
}