* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

body {
  background-color: #07070a;
  background-image: url("../img/about_bg.png");
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", Arial, sans-serif;
  color: #f2f3f5;
  line-height: 1.8;
}

.site_header__inner {
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}
.site_header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site_header__brand:hover {
  opacity: 0.85;
}
.site_header__brand img {
  height: 30px;
  width: auto;
  display: block;
  filter: none;
  filter: brightness(0) invert(1);
  background-color: transparent;
}
.site_header__nav {
  display: block;
}
.site_header__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}
.site_header__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
.site_header__nav a:hover {
  color: #39ff14;
}
.site_header__nav a[aria-current=page] {
  color: #39ff14;
}
@media screen and (max-width: 800px) {
  .site_header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site_footer {
  padding: 28px 16px 40px;
  background: transparent;
}
.site_footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.site_footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.home {
  min-height: 100vh;
  overflow: hidden;
}

.home__video {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #07070a;
}
.home__video:after {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.9;
  background-image: linear-gradient(0deg, transparent 25%, #000 25%, #000 50%, transparent 50%, transparent 75%, #000 75%, #000);
  background-size: 8px 8px;
}
.home__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 16px;
}

.home__logo {
  width: min(560px, 88vw);
}
.home__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(1) brightness(1.15);
}

.home__nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 18, 23, 0.55);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.home__nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(18, 18, 23, 0.75);
}

main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px;
  position: relative;
}
main .logo {
  text-align: center;
  margin: 24px 0 16px;
}
main .logo img {
  width: min(520px, 100%);
  height: auto;
  display: inline-block;
  filter: invert(1) brightness(1.15);
}
main .works {
  width: 100%;
  background: #181819;
  padding: 40px clamp(10px, 2vw, 40px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
main .works .works_top_placeholder {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: #a1a1aa;
}
main .works .works_top_placeholder a {
  color: #e7e7ea;
  font-weight: 600;
}
main .works .works_grid--visual {
  gap: 12px;
}
@media screen and (min-width: 800px) {
  main .works .works_grid--visual {
    gap: 16px;
  }
}
main .works .works_more {
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
}
main .works .works_more a {
  color: #e7e7ea;
  font-weight: 600;
}

.page_works .inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.works_heading {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 8px;
}
.works_heading__inner {
  border-bottom: 3px solid #111;
  padding-bottom: 16px;
}
.works_heading__inner h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.works_heading__inner p {
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
}

.works_notice {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}
.works_notice code {
  font-size: 13px;
  background: #f3f3f3;
  padding: 2px 6px;
  border-radius: 3px;
}
.works_notice--error {
  color: #b00020;
}
.works_notice--setup {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  border-radius: 5px;
}

.works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.works_grid--visual {
  gap: 30px;
}
@media screen and (min-width: 800px) {
  .works_grid--visual {
    gap: 30px;
  }
}
@media screen and (max-width: 800px) {
  .works_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.works_grid__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: 0.2s;
}
.works_grid__link:hover img {
  transform: scale(1.03);
}
.works_grid__thumb {
  display: block;
  aspect-ratio: 3/4;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
  pointer-events: none;
}
.works_grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  pointer-events: none;
}
.works_grid__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.works_pagination {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.works_pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.works_pagination a,
.works_pagination .is-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #f2f3f5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #181819;
}
.works_pagination a:hover {
  border-color: #e7e7ea;
  color: #e7e7ea;
}
.works_pagination .is-current {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.works_back_top {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}
.works_back_top a {
  color: #e7e7ea;
  font-weight: 600;
}

.works_article__head time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.works_article__head h1 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  margin: 12px 0 24px;
  line-height: 1.35;
  color: #fff;
}
.works_article__eyecatch {
  margin: 0 0 28px;
}
.works_article__eyecatch img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.works_article__body {
  font-size: 15px;
  line-height: 1.85;
  color: #f2f3f5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.works_article__body > *:first-child {
  margin-top: 0;
}
.works_article__body > *:last-child {
  margin-bottom: 0;
}
.works_article__body p {
  margin: 0 0 1em;
}
.works_article__body h2 {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  color: #f2f3f5;
  margin: 2em 0 0.75em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid #e7e7ea;
  scroll-margin-top: 1rem;
}
.works_article__body h2:first-child {
  margin-top: 0;
}
.works_article__body ul,
.works_article__body ol {
  margin: 0 0 1.25em;
  padding-left: 1.35em;
}
.works_article__body ul {
  list-style: disc;
}
.works_article__body ol {
  list-style: decimal;
}
.works_article__body li {
  margin-bottom: 0.55em;
}
.works_article__body li::marker {
  color: #e7e7ea;
}
.works_article__body li:last-child {
  margin-bottom: 0;
}
.works_article__body a {
  color: #e7e7ea;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.works_article__body a:hover {
  color: #ffffff;
}
.works_article__body figure {
  margin: 1.75em 0;
}
.works_article__body figure img {
  margin: 0 auto;
}
.works_article__body figcaption {
  margin-top: 0.6em;
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.5;
}
.works_article__body img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.works_swiper {
  margin: 0 0 28px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}
.works_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
}
.works_swiper img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.05);
}
.works_swiper .swiper-button-prev,
.works_swiper .swiper-button-next {
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.works_swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}
.works_swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.page_faq .faq_item {
  max-width: 1000px;
  margin: 0 auto 20px;
  padding: 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #181819;
}
.page_faq .faq_item .faq_q {
  font-size: 18px;
  margin-bottom: 1em;
}



/*# sourceMappingURL=style.css.map */
