@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);
}

.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;
    }
  }
}
/* 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;
    }
  }
}
/* single-news: News article page (Figma) */
.page-single-news {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 96px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@scope (.c-hero) {
  :scope {
    width: 100%;
    min-height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
  }
  .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    overflow: hidden;
  }
  .background .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
}
@scope (.c-article) {
  :scope {
    width: 100%;
    max-width: 1080px;
    padding: 0 0 0;
    margin-bottom: 160px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
  }
  /* thumb */
  .thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background-color: #e8e8e8;
  }
  .thumb .inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .thumb .visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .thumb .image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    background-color: #e8e8e8;
  }
  .thumb .placeholder {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
  }
  /* header: title + meta */
  .header {
    width: 100%;
    padding: 48px 80px 32px;
  }
  @media (max-width: 768px) {
    .header {
      padding: 32px 24px 24px;
    }
  }
  .header .title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .header .title {
      font-size: 22px;
    }
  }
  .header .meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .header .date {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
  }
  .header .terms {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
  }
  /* body: content + back link */
  .body {
    width: 100%;
    padding: 0 80px 64px;
  }
  @media (max-width: 768px) {
    .body {
      padding: 0 24px 48px;
    }
  }
  .body .content {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin-bottom: 48px;
  }
  .body .content p {
    margin: 0 0 1.5em;
  }
  .body .content p:last-child {
    margin-bottom: 0;
  }
  .body .content h2 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin: 2em 0 1em;
  }
  .body .content h2:first-child {
    margin-top: 0;
  }
  .body .content h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 1.5em 0 0.75em;
  }
  .body .content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em 0;
    border-radius: 8px;
  }
  .body .content figure {
    margin: 1.5em 0;
  }
  .body .content figure img {
    margin: 0;
  }
  .body .content figure figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
  }
  .body .content ul,
  .body .content ol {
    margin: 1em 0;
    padding-left: 1.5em;
  }
  .body .content li {
    margin-bottom: 0.5em;
  }
  .body .content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
  }
  .body .content table th,
  .body .content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
  }
  .body .content table th {
    font-weight: 500;
    background-color: #f9f9f9;
  }
  .body .content table tr:last-child th,
  .body .content table tr:last-child td {
    border-bottom: none;
  }
  .body .content a {
    color: #018bff;
    text-decoration: underline;
    transition: var(--link-transition, opacity 0.2s ease);
  }
  .body .content a:hover {
    opacity: var(--link-hover-opacity, 0.85);
  }
  .body .back {
    margin: 0;
  }
  .body .back a {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: var(--link-transition, opacity 0.2s ease);
  }
  .body .back a:hover {
    opacity: var(--link-hover-opacity, 0.85);
  }
}
/* c-related: Related news (dark gray, 3 cards) */
.c-related {
  width: 100%;
  padding: 120px 20px 160px;
  background: rgba(51, 51, 51, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .c-related {
    padding: 80px 12px 120px;
  }
}

.c-related .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.c-related .title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 48px;
}
@media (max-width: 768px) {
  .c-related .title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

/* Related news: card layout (3 columns) */
.page-single-news .c-related .p-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .page-single-news .c-related .p-news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-single-news .c-related .p-news {
    grid-template-columns: 1fr;
  }
}

.page-single-news .c-related .p-news .item {
  flex-direction: column;
  padding: 0;
  border-bottom: none;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.page-single-news .c-related .p-news .item .visual {
  flex: none;
  width: 100%;
  height: 180px;
}
@media (max-width: 768px) {
  .page-single-news .c-related .p-news .item .visual {
    height: 200px;
  }
}

.page-single-news .c-related .p-news .item .body {
  padding: 20px;
  flex: 1;
}

.page-single-news .c-related .p-news .item .date {
  color: #999;
  margin-bottom: 8px;
}

.page-single-news .c-related .p-news .item .title {
  font-size: 16px;
  margin-bottom: 8px;
}

.page-single-news .c-related .p-news .item .title a {
  color: #333;
}

.page-single-news .c-related .p-news .item .desc {
  -webkit-line-clamp: 2;
  font-size: 13px;
}

.page-single-news .c-related .p-news .item .tags {
  margin-top: 8px;
}

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