#gameday_program-2024-25{
	
}
.gameday-program-list-text{
	color: #000000;
	text-align: left;
}
.gameday-program-list-button {
    background-color: #f0e0eb;
    border: none;
    outline: none;
    padding: 5px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin: 20px auto 0;
    color: #181b39;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid #181b39;
    display: flex; /* Flexboxを使って要素を並べる */
    justify-content: space-between; /* 左右に要素を配置 */
    align-items: center; /* 縦方向の中央揃え */
}
.gameday-program-list-arrow {
    margin-left:auto 10px; /* 矢印とテキストの間にスペースを追加 */
    font-size: 1.5em; /* 矢印のサイズを調整 */
}
.gameday-program-list-button:hover {
    background-color: #b84c97;
    color: #fff;
    border: 2px solid #181b39;
	opacity: 1!important;
}
.gameday-program-list-button_coming-soon{
	background-color: #888888;
    border: none;
    outline: none;
    padding: 5px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin: 20px auto 0;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid #181b39;
}

@media (max-width: 750px){
	.gameday-program-list-button{
	background-color: #f0e0eb;
    border: none;
    outline: none;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    width: 90%;
    transition: background-color 0.3s ease;
    margin: 20px auto 0;
    color: #181b39;
    font-size: 0.9em;
    font-weight: bold;
    border: 2px solid #181b39;
}
.gameday-program-list-button:hover {
    background-color: #b84c97;
    color: #fff;
    border: 2px solid #181b39;
}
.gameday-program-list-button_coming-soon{
	background-color: #888888;
    border: none;
    outline: none;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin: 20px auto 0;
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    border: 2px solid #181b39;
}
}