@charset "UTF-8";
.h-notice {
    margin-top: 30px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.h-notice h4 {
    color: ghostwhite;
    font-weight: 700;
    font-size: large;
}
.race-table-wrap {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.course-race-table {
    width: 90%;
    margin-top: 30px;
}

.course-race-table > .race-course {
    display: flex;
    width: 100%;
    height: 60px;
    border: 1px solid lightgrey;
    align-items: center;
    justify-content: space-evenly;
    background: #404040;
}
.race-course > .course-name {
    color: ghostwhite;
    font-weight: 600;
    font-size: 20px;
}
.race-content {
    height: 70px;
    border-bottom: 1px solid lightgray;
    border-right: 1px solid lightgray;
    border-left: 1px solid lightgray;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: baseline;
    word-break: break-all;
    width: 100%;
    position: relative;
    background: #454545;
}
.race-number {
    width: 40px;
    height: 40px;
    background: grey;
    border-radius: 16%;
    margin-left: 10px;
    margin-right: 5px;
    font-weight: 700;
    font-size: 10px;
    color: white;
    text-align: center;
    line-height: 40px;
}
.race-desc {
    color: ghostwhite;
    display: flex;
    flex-direction: column;
    width: 80%;
    flex-wrap: wrap;
}
.race-name {
    margin-left: 10px;
    word-break: break-all;
    line-height: 1.2;
}
.course-race-table-link a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.sunny {
    background-image: url("/content/svg/sunny.svg");
    width: 30px;
    height: 30px;
    background-size: 100%;
    text-align: center;
}
.cloud {
    background-image: url("/content/svg/cloud.svg");
    width: 30px;
    height: 30px;
    background-size: 100%;
    text-align: center;
}
.rain {
    background-image: url("/content/svg/rain.svg");
    width: 30px;
    height: 30px;
    background-size: 100%;
    text-align: center;
}
.snow {
    background-image: url("/content/svg/snow.svg");
    width: 30px;
    height: 30px;
    background-size: 100%;
    text-align: center;
}
.condition {
    color: ghostwhite;
}


/* デザインC(PC) */
@media screen and (min-width: 1025px) {
    .today-info, .day-info {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    .race-table-wrap {
        width: 60%;
        flex-flow: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }
    .race-table-wrap > ul {
        width: 45%;
    }
    .race-desc {
        font-size: 80%;
    }
}









    }