body {
  background-color: #121212;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../font/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-weight: 800; /* Assuming 'Eb' stands for Extra Bold */
  font-style: normal;
}
.logo {
  filter: invert(1);
  display: flex;
  justify-content: center;
}
.logo a img {
  width: 100px;
  height: 100px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background-color: #121212;
  display: flex;
  justify-content: space-around;
  z-index: 999;
  transition: all 0.5s ease;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
}
.gallery img {
  width: 100%;
  height: auto;
  margin: 10px;
}
.article {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin:1rem;
  margin-top: 150px;
  align-items: center;
  gap:1rem;
  max-width: 100%;
}
article{
    max-width: 1200px;
}
p{
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.2rem;
    margin: 0;
    margin-bottom: 0.5rem;
    padding: 0;
}
figure{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner{
    width:100%;
    max-width: 1200px;
}
@media (max-width: 768px) {
    article{
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
    }
  }