@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%;
}

.works-single {
  padding: 18rem 0 14rem;
  background: #F6F6F6;
}
.works-single .works-single-inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.works-single .works-single-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.works-single .works-single-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.6rem 1.2rem;
  background: #EDEDED;
  font-size: 1.6rem;
  font-weight: 400;
  color: #141730;
  letter-spacing: 0.05em;
}
.works-single .works-single-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #141730;
  line-height: 1.5;
}
.works-single .works-single-date {
  font-size: 1.3rem;
  color: #66697F;
  font-family: "Jost", sans-serif;
}
.works-single .works-single-thumbnail {
  width: 100%;
}
.works-single .works-single-thumbnail img {
  width: 100%;
  max-height: 56rem;
  object-fit: cover;
  display: block;
}
.works-single .works-single-body {
  margin: 1.6rem 0 2.8rem;
}
.works-single .works-single-body p {
  font-size: 1.6rem;
  line-height: 2;
  color: #3D3D3D;
  letter-spacing: 0.05em;
}
.works-single .works-single-body p + p {
  margin-top: 2.4rem;
}
.works-single .works-single-body h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #141730;
  margin: 4.8rem 0 2rem;
}
.works-single .works-single-body h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #141730;
  margin: 3.2rem 0 1.6rem;
}
.works-single .works-single-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 3.2rem 0;
}
.works-single .works-single-foot {
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .works-single {
    padding: 12rem 0 10rem;
  }
  .works-single .works-single-inner {
    gap: 4rem;
  }
  .works-single .works-single-title {
    font-size: 2rem;
  }
}

.works-other {
  padding: 4rem 0 12rem;
  background: #F6F6F6;
}
.works-other .works-other-inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.works-other .works-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
.works-other .works-other-foot {
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .works-other {
    padding: 6rem 0 10rem;
  }
  .works-other .works-other-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .works-other .works-other-grid {
    grid-template-columns: 1fr;
  }
}