/*!
reset
------------------------------
*/
html {
    color: #000;
    background: #fff;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
fieldset,
img {
    border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}
ol,
ul {
    list-style: none;
}
caption,
th {
    text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}
q:before,
q:after {
    content: "";
}
abbr,
acronym {
    border: 0;
    font-variant: normal;
}
sup {
    vertical-align: text-top;
}
sub {
    vertical-align: text-bottom;
}
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-size: 100%;
}
legend {
    color: #000;
}
main {
    display: block;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
} /*!
base
------------------------------
*/
body {
    line-height: 1.75;
    font-size: 14px;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
} /*!
top
------------------------------
*/
.top {
    padding: 80px 0;
}
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 960px;
}
.post {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
@media screen and (min-width: 500px) {
    .post {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 768px) {
    .post {
        grid-template-columns: repeat(3, 1fr);
    }
}
.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.post-category {
    background-color: #6cbbff;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 100vh;
}
.post-date {
    color: #999;
    line-height: 1;
    font-size: 12px;
}
.post-title {
    margin-top: 8px;
    font-weight: bold;
    font-size: 20px;
} /*# sourceMappingURL=style.css.map */
