@charset "UTF-8";
/* ヘッダー高さ（front-page 等で calc(100vh - var(--header-height)) に利用） */
:root {
  --header-height: 99px;
  /* padding 24*2 + content 51 */
}

@media (max-width: 768px) {
  :root {
    --header-height: 83px;
    /* padding 16*2 + content 51 */
  }
}
/* ヘッダー：自身のレイアウト */
.c-header {
  background-color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s ease;
  /* スマホ版：スクロール中に非表示 */
}
@media (max-width: 768px) {
  .c-header.is-scrolling-down {
    transform: translateY(-100%);
  }
}

/* ヘッダー配下のみに適用（@scope） */
@scope (.c-header) {
  /* header active state */
  :scope.is-active .list {
    display: none;
  }
  :scope.is-active .contact {
    display: none;
  }
  /* layout */
  .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .inner {
      padding: 16px 20px;
    }
  }
  /* logo */
  .logo {
    height: 51px;
    width: 200px;
    position: relative;
    flex-shrink: 0;
  }
  .logo .link {
    display: block;
    height: 100%;
    width: 100%;
  }
  .logo .media {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 192px;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  /* navigation */
  .nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .list {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .list {
      display: none;
    }
  }
  .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu .menu-item {
    margin: 0;
  }
  .menu .menu-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #ffffff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    transition: var(--link-transition, opacity 0.2s ease);
  }
  .menu .menu-item a .dot {
    display: block;
    width: 4px;
    height: 4px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
  }
  .menu .menu-item a .text {
    flex-shrink: 0;
  }
  /* contact CTA */
  .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 51px;
    width: 167px;
    padding: 8px 26px;
    background-color: #ffffff;
    border: 0.5px solid #0bc109;
    border-radius: 500px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--link-transition, opacity 0.2s ease);
  }
  @media (max-width: 768px) {
    .contact {
      display: none;
    }
  }
  .contact .text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    color: #0bc109;
  }
  .contact .dot {
    width: 5px;
    height: 5px;
    background: #0bc109;
    border-radius: 50%;
  }
  /* trigger */
  .trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    position: relative;
    flex-shrink: 0;
    background-color: #0bc109;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    z-index: 101;
  }
  .trigger:hover {
    opacity: 0.8;
  }
  .trigger.is-active .icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .trigger.is-active .icon span:nth-child(2) {
    opacity: 0;
  }
  .trigger.is-active .icon span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .icon {
    position: relative;
    width: 20px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
    position: absolute;
  }
  .icon span:nth-child(1) {
    top: 0;
  }
  .icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .icon span:nth-child(3) {
    bottom: 0;
  }
}
/* オーバーレイ：自身のレイアウト */
.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* オーバーレイ配下のみに適用（@scope） */
@scope (.c-overlay) {
  .inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 135px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
  }
  @media (max-width: 768px) {
    .inner {
      padding: 135px 40px;
      justify-content: flex-start;
    }
  }
  .header {
    display: none;
  }
  @media (max-width: 768px) {
    .header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      width: 100%;
      padding-bottom: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  }
  .header .logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .header .logo .image {
    display: block;
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .logo .tagline {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
  }
  .header .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 2px solid #33cc00;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }
  .header .close:hover {
    opacity: 0.8;
  }
  .header .close .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
  }
  .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  }
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 32px;
    width: 560px;
    margin-top: 0;
  }
  @media (max-width: 768px) {
    .nav {
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      flex: 1;
    }
  }
  .link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 12px;
    width: 280px;
    text-decoration: none;
    color: inherit;
  }
  @media (max-width: 768px) {
    .link {
      gap: 12px;
      padding: 12px 0;
      width: 100%;
    }
  }
  .dot {
    display: block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background-color: #0bc109;
    border-radius: 50%;
  }
  @media (max-width: 768px) {
    .dot {
      width: 4px;
      height: 4px;
      background-color: #fff;
    }
  }
  .text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    line-height: 1;
  }
  .text-en {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-transform: capitalize;
  }
  .text-ja {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 14px;
  }
  .banner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 480px;
    margin-top: 0;
  }
  @media (max-width: 768px) {
    .banner {
      gap: 24px;
      width: 100%;
      margin-top: 40px;
    }
  }
  .banner .item {
    display: block;
    width: 480px;
    position: relative;
    border-radius: 18px;
    overflow: visible;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .banner .item:hover {
    opacity: 0.8;
  }
  @media (max-width: 768px) {
    .banner .item {
      width: 100%;
    }
  }
  .banner .media {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
/* ヘッダー is-active 時にオーバーレイ表示（スコープ外） */
.c-header.is-active ~ .c-overlay,
.c-header.is-active + .c-overlay {
  opacity: 1;
  visibility: visible;
}
.c-header.is-active ~ .c-overlay .content,
.c-header.is-active + .c-overlay .content {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.c-footer {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 40px;
}

@scope (.c-footer) {
  .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .logo-section .logo {
    display: flex;
    align-items: center;
  }
  .logo-section .logo .image {
    display: block;
    width: auto;
    height: auto;
    width: 192px;
    height: 49px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .logo-section .tagline {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
  }
  .nav-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .nav-column .column-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 12px;
  }
  .nav-column .column-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 9px);
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .nav-list li {
    margin: 0;
    padding: 0;
  }
  .nav-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--link-transition, color 0.2s ease);
  }
  .nav-list a::before {
    content: ">";
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
  }
  .nav-list a:hover {
    color: #ffffff;
  }
  .legal-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .legal-links {
    display: flex;
    gap: 24px;
  }
  .legal-links a {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--link-transition, color 0.2s ease);
  }
  .legal-links a:hover {
    color: #ffffff;
  }
  .copyright {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }
}
@media (max-width: 768px) {
  @scope (.c-footer) {
    padding: 60px 0 32px;
    .inner {
      padding: 0 20px;
      gap: 32px;
    }
    .nav-section {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
      padding-top: 32px;
    }
    .legal-links {
      flex-direction: column;
      gap: 12px;
    }
  }
}
.p-news {
  width: 100%;
}

@scope (.p-news) {
  .item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
  }
  @media (max-width: 768px) {
    .item {
      flex-direction: column;
      gap: 16px;
      padding: 24px 0;
    }
  }
  .item:not(:last-child) {
    border-bottom: 1px dashed #e0e0e0;
  }
  .item:first-child {
    padding-top: 0;
  }
  .item:last-child {
    padding-bottom: 0;
  }
  .item .visual {
    flex: 0 0 240px;
    width: 240px;
    height: 135px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8e8e8;
    display: block;
    text-decoration: none;
    position: relative;
  }
  @media (max-width: 768px) {
    .item .visual {
      width: 100%;
      height: 200px;
      flex: none;
    }
  }
  .item .visual .image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: transform 0.3s ease;
  }
  .item .visual:hover .image {
    transform: scale(1.1);
  }
  .item .visual .placeholder {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #d0d0d0;
    border-radius: 12px;
  }
  .item .body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .item .date {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin-bottom: 4px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .item .title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin-bottom: 6px;
  }
  @media (max-width: 768px) {
    .item .title {
      font-size: 16px;
    }
  }
  .item .title a {
    color: inherit;
    text-decoration: none;
    transition: var(--link-transition, opacity 0.2s ease);
  }
  .item .title a:hover {
    opacity: var(--link-hover-opacity, 0.85);
  }
  .item .desc {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
  }
  @media (max-width: 768px) {
    .item .desc {
      font-size: 13px;
    }
  }
  .item .tags {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin: 0;
    margin-top: 4px;
    line-height: 1.2;
  }
  .item .tags a {
    color: #999;
    text-decoration: none;
    transition: var(--link-transition, color 0.2s ease);
  }
  .item .tags a:hover {
    color: #333;
  }
}
/* p-chapter: Other Chapter section (Figma) */
@scope (.p-chapter) {
  :scope {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  @media (max-width: 768px) {
    .inner {
      gap: 40px;
    }
  }
  .title {
    font-family: "Montserrat", sans-serif;
    font-size: 88px;
    font-weight: 500;
    color: #333;
    text-align: center;
  }
  @media (max-width: 768px) {
    .title {
      font-size: 40px;
      text-align: left;
    }
  }
  .grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .grid {
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 16px;
    }
  }
  .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 588px;
    height: 278px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .item {
      width: 100%;
      height: 200px;
    }
  }
  .item .visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    z-index: 0;
  }
  .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 18px;
    z-index: 1;
    transition: background 0.3s ease;
  }
  .item:hover .visual {
    transform: scale(1.05);
  }
  .item:hover::before {
    background: rgba(0, 0, 0, 0.3);
  }
  .label {
    position: relative;
    z-index: 2;
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  @media (max-width: 768px) {
    .label {
      font-size: 24px;
    }
  }
  .label-ja {
    font-size: 18px;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .label-ja {
      font-size: 14px;
    }
  }
}
/* archive-news: News list */
.archive-news {
  width: 100%;
  min-height: calc(100vh - var(--header-height, 0px));
  position: relative;
  overflow: hidden;
}

/* c-hero */
.archive-news .c-hero {
  width: 100%;
  height: 326px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 768px) {
  .archive-news .c-hero {
    height: 240px;
  }
}
.archive-news .c-hero .background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.archive-news .c-hero .background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.archive-news .c-hero .background .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.archive-news .c-hero .content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .archive-news .c-hero .content {
    padding: 0 20px;
    gap: 12px;
  }
}
.archive-news .c-hero .title {
  font-family: "Montserrat", sans-serif;
  font-size: 88px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin: 0;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .archive-news .c-hero .title {
    font-size: 64px;
  }
}
.archive-news .c-hero .subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 768px) {
  .archive-news .c-hero .subtitle {
    font-size: 20px;
  }
}

/* c-news: archive list */
.archive-news .c-news {
  margin: 0 20px 160px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 80px 120px;
}
@media (max-width: 768px) {
  .archive-news .c-news {
    margin: 0 12px 80px;
    padding: 48px 24px;
  }
}

.archive-news .c-news .inner {
  max-width: 800px;
  margin: 0 auto;
}

.archive-news .c-news .p-news {
  margin: 0;
}

/* Pagination */
.archive-news .c-news .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .archive-news .c-news .pagination {
    margin-top: 48px;
    gap: 6px;
  }
}

.archive-news .c-news .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--link-transition, opacity 0.2s ease);
}
@media (max-width: 768px) {
  .archive-news .c-news .pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.archive-news .c-news .pagination .page-numbers:hover:not(.current) {
  opacity: var(--link-hover-opacity, 0.85);
}
.archive-news .c-news .pagination .page-numbers.current {
  background-color: #1a1a1a;
  color: #fff;
}
.archive-news .c-news .pagination .page-numbers.prev, .archive-news .c-news .pagination .page-numbers.next {
  position: relative;
}
.archive-news .c-news .pagination .page-numbers.prev .pagination-arrow, .archive-news .c-news .pagination .page-numbers.next .pagination-arrow {
  display: block;
  position: absolute;
  inset: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.archive-news .c-news .pagination .page-numbers.prev .pagination-arrow::before, .archive-news .c-news .pagination .page-numbers.next .pagination-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: currentColor;
}
.archive-news .c-news .pagination .page-numbers.prev .pagination-prev::before, .archive-news .c-news .pagination .page-numbers.next .pagination-prev::before {
  border-width: 2px 2px 0 0;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.archive-news .c-news .pagination .page-numbers.prev .pagination-next::before, .archive-news .c-news .pagination .page-numbers.next .pagination-next::before {
  border-width: 2px 2px 0 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.archive-news .c-news .pagination .page-numbers.dots {
  background-color: transparent;
  color: #666666;
  cursor: default;
  pointer-events: none;
}

.archive-news .c-chapter {
  width: 100%;
  background-color: #ffffff;
  padding: 120px 80px;
}
@media (max-width: 768px) {
  .archive-news .c-chapter {
    padding: 80px 20px;
  }
}/*# sourceMappingURL=style.css.map */