body {
  font-family: "Poppins", "YakuhanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}
body img {
  vertical-align: middle;
}
body .button-back {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  text-decoration: none;
}
body .button-back.icon {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer {
  margin-top: 6rem;
}
.footer .footer-contents {
  margin: auto;
  padding-bottom: 100px;
  width: 1400px;
  max-width: calc(100% - 4rem);
}

.page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 30svh 0 6rem;
  width: 1400px;
  max-width: calc(100% - 4rem);
}
@media screen and (max-width: 1200px) {
  .page-header {
    padding: 6rem 0 6rem;
  }
}
.page-header .page-title {
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: 600;
}
.page-header .project-title,
.page-header .content-title {
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: 600;
}
.page-header .project-title-jp {
  font-weight: 600;
}
.page-header .project-description {
  margin-top: 1rem;
}

.page-body {
  margin: auto;
  width: 1400px;
  max-width: calc(100% - 4rem);
}
.page-body.content-page {
  display: grid;
  grid-template-columns: 1000px 1fr;
  grid-gap: 2rem;
}
@media screen and (max-width: 1400px) {
  .page-body.content-page {
    grid-template-columns: 1fr 300px;
  }
}
@media screen and (max-width: 1000px) {
  .page-body.content-page {
    grid-template-columns: 1fr;
    grid-gap: 4rem;
  }
}
.page-body.content-page .content-nav {
  display: flex;
  justify-content: space-between;
}
.page-body.content-page .content-nav .prev,
.page-body.content-page .content-nav .next {
  aspect-ratio: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  background-color: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: 0.2s;
}
.page-body.content-page .content-nav .prev:hover,
.page-body.content-page .content-nav .next:hover {
  background-color: #ddd;
}
.page-body .page-body-side .projects {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
}
.page-body .page-body-side .projects .project {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 1rem;
  align-items: center;
}

.projects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 4rem;
}
@media screen and (max-width: 1200px) {
  .projects {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem 2rem;
  }
}
@media screen and (max-width: 800px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  .projects {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.5rem;
  }
  .projects .project {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 0.5rem;
    align-items: center;
  }
}
.projects .project {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  text-decoration: none;
}
.projects .project[target=_blank]:after {
  content: "\f8ce";
  aspect-ratio: 1;
  position: absolute;
  top: 1rem;
  right: 1rem;
  line-height: 1;
  font-family: "Material Symbols Outlined";
}
.projects .project:hover .project-image .project-thumbnail {
  transform: scale(1.2);
}
.projects .project .project-image {
  aspect-ratio: 1;
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #ddd;
  overflow: hidden;
}
.projects .project .project-image .project-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.projects .project .project-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.projects .project .project-title-jp {
  font-size: 0.8rem;
}
.projects .project .project-description {
  margin-top: 1rem;
}
.projects .project .project-brand {
  margin-top: 2rem;
  color: #aaa;
  font-size: 0.9rem;
}
.projects .project .project-brand:before {
  content: "#";
}

.top {
  margin: auto;
}
.top .top-fv .top-fv-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 30svh 0 6rem;
  width: 1400px;
  max-width: calc(100% - 4rem);
}
@media screen and (max-width: 800px) {
  .top .top-fv .top-fv-contents {
    padding: 6rem 0;
    font-size: 0.8rem;
  }
}
.top .top-fv h1 {
  font-size: 3.6rem;
  font-weight: 600;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .top .top-fv h1 {
    font-size: 3rem;
  }
}
.top .top-projects {
  margin: auto;
  width: 1400px;
  max-width: calc(100% - 4rem);
}
.top .top-projects h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}
.top .top-projects .button-area {
  margin-top: 4rem;
  text-align: center;
}
.top .top-projects .button-area .button {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3em;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.2s;
}
.top .top-projects .button-area .button:hover {
  background-color: #ddd;
}

.top_section_bosoboso h2 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.top_section_bosoboso h2 small {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
}
.top_section_bosoboso h3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 600;
}
.top_section_bosoboso .button_area {
  margin-top: 2rem;
}
.top_section_bosoboso .button_area a {
  padding: 0.5rem 2rem;
  background-color: #eee;
  border-radius: 3em;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.top_section_bosoboso .button_area a:hover {
  background-color: #ddd;
}/*# sourceMappingURL=common.css.map */