*{
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: normal;
    text-decoration: none;
}
img{
    width: 100%;
    height: auto;
}

body{
    background-color: #fff9f5;
}

h1{
    padding: 30px;
    text-align: center;
    background-color: #f19db5;
    color: #fff9f5;
    font-weight: bold;
    font-size: 32px;
}

.main-wrap{
    max-width: 980px;
    margin: 80px auto 0px;
}
.list{
    margin: 0 24px;
}

.list-item:not(:first-child){
    margin-top: 32px;
}

.list-link{
    border-radius: 20px;
    background-color: #f19db5;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 1fr 2fr 6fr 3fr;
    grid-template-rows: auto;
    color: #fff9f5;
    font-size: 18px;
    font-weight: medium;
    column-gap: 10px;
    align-items: center;
}

.sub-ttl{
    min-width: 90px;
}

@media only screen and (max-width: 640px){
    .list-link{
        padding: 16px;
        grid-template-rows: 1fr 1fr;
        row-gap: 10px;
    }
    .date{
        grid-column: 1 / 2;
    }
    .sub-ttl{
        grid-column: 2 / 5;
    }
    .main-ttl{
        grid-column: 1 / 4;
    }
    .main-supple{
        grid-column: 4 / 5;
    }
}

/* .date{
    background-color: red;
}
.sub-ttl{
    background-color: blue;
}
.main-ttl{
    background-color: green;
}
.main-supple{
    background-color: yellow;
} */