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;
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: border-box;
          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;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@font-face {
  font-family: "Higure";
  src: url("../font/HigureGothic-Black.ttf") format("truetype"), local(sans-serif);
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Higure";
  src: url("../font/HigureGothic-Bold.ttf") format("truetype"), local(sans-serif);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Higure";
  src: url("../font/HigureGothic-Medium.ttf") format("truetype"), local(sans-serif);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "Higure", sans-serif;
  font-size: 62.5%;
}

h1 {
  font-size: 4.8rem;
  line-height: 80px;
  font-weight: 900;
}

h2 {
  font-size: 4rem;
  line-height: 60px;
  font-weight: 900;
}

h3 {
  font-size: 2.4rem;
  line-height: 38px;
  font-weight: 900;
}

p {
  font-size: 1.6rem;
  line-height: 26px;
}

.me {
  text-align: center;
  margin-top: 15rem;
}

.hundred-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 4rem 0 12rem 0;
}

.hundred-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hundred-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  display: block;
}

#popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  font-size: 1.6rem;
}

#popup-content {
  background: #fff;
  padding: 4rem;
  border-radius: 0.6rem;
  width: 40%;
  overflow: auto;
}
#popup-content img {
  height: auto;
  display: block;
  margin: 0 auto 3rem auto;
  border-radius: 0.3rem;
}

@media (max-width: 960px) {
  .hundred-list {
    grid-template-columns: repeat(3, 1fr);
  }
  #popup-content {
    background: #fff;
    padding: 2em;
    border-radius: 0.6rem;
    width: 60%;
    height: auto;
    overflow: auto;
  }
  #popup-content img {
    height: auto;
    display: block;
    margin: 0 auto 1em auto;
    border-radius: 0.3rem;
  }
}