@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* ============================================
  ⭐ ここから下を編集してください ⭐
  ============================================ */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

.news-archive {
  padding: 10rem 0 14rem;
  background: #F6F6F6;
}
.news-archive .news-archive-inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.news-archive .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 32rem);
  gap: 3.2rem;
}
.news-archive .news-grid li {
  display: flex;
}
.news-archive .news-empty {
  font-size: 1.5rem;
  color: #66697F;
  text-align: center;
  padding: 6rem 0;
}
@media (max-width: 960px) {
  .news-archive {
    padding: 6rem 0 10rem;
  }
  .news-archive .news-archive-inner {
    gap: 4rem;
  }
  .news-archive .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .news-archive .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
  .news-archive .c-news-card-image-frame {
    height: clamp(12rem, 36vw, 16rem);
  }
  .news-archive .c-news-card-body {
    padding: 1.2rem;
  }
  .news-archive .c-news-card-title {
    margin: 1rem 0 1.2rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .news-archive .c-news-card-foot {
    padding-top: 1.2rem;
  }
}