.apply-button-container {
text-align: center;
margin: 20px 0;
}
.apply-button {
display: inline-block;
padding: 12px 30px;
background-color: #4CAF50; /* 緑色 */
color: white;
font-size: 16px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.apply-button:hover {
background-color: #45a049; /* ホバー時に少し濃い緑色に */
}