@charset "UTF-8";
@view-transition {
  navigation: auto;
}
html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color-scheme: light;
  font-synthesis: none;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: "transparent";
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
  line-height: 2;
  font-weight: bold;
}

button {
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  background-color: inherit;
  border: none;
  outline: none;
}

p,
a {
  letter-spacing: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
}

img {
  width: auto;
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.button {
  display: inline-block;
  padding: 24px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
  min-width: 240px;
}
.button:hover {
  opacity: 0.8;
}
.button .button_text {
  display: block;
}

.button--outline {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
.button--outline:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}

.button--text {
  background-color: transparent;
  color: #000;
  padding: 12px 0;
  border-radius: 0;
  min-width: auto;
  border: none;
}
.button--text .button_text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.button--text .button_text::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s ease;
}
.button--text:hover {
  opacity: 1;
}
.button--text:hover .button_text::after {
  transform: translateX(4px);
}

.button--on-white {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
.button--on-white:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
  border-color: #fff;
}

.button--small {
  padding: 14px 20px;
  font-size: 12px;
  border-radius: 14px;
  min-width: 160px;
}

.button--large {
  padding: 28px 40px;
  font-size: 16px;
  border-radius: 24px;
  min-width: 300px;
}

.section_header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 960px) {
  .section_header {
    flex-direction: column;
  }
}

.section_header--flex .title {
  margin-bottom: 0;
}

.section_header--dark {
  color: #000;
}

.section_header--white {
  color: #fff;
}

.section_header--center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  align-self: center;
  padding-left: 0;
}
@media (max-width: 960px) {
  .section_header--center {
    align-self: center;
  }
}

.column_heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
}

.title {
  font-family: "Lexend Giga", sans-serif;
  font-size: 65px;
  font-weight: 900;
  line-height: 81px;
  letter-spacing: 0.04em;
  margin-bottom: -16px;
}
@media (max-width: 960px) {
  .title {
    line-height: 56px;
    font-size: 48px;
    margin-bottom: -12px;
  }
}

.subtitle {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 61px;
}
@media (max-width: 960px) {
  .subtitle {
    font-size: 16px;
  }
}

.title--hero--white {
  color: #fff;
}
@media (max-width: 960px) {
  .title--hero--white {
    font-size: 42px;
    margin-bottom: -24px;
  }
}

.subtitle--hero--white {
  color: #fff;
}
@media (max-width: 960px) {
  .subtitle--hero--white {
    font-size: 14px;
  }
}

.title--hero--black {
  color: #000;
}
@media (max-width: 960px) {
  .title--hero--black {
    font-size: 42px;
    margin-bottom: -24px;
  }
}

.subtitle--hero--black {
  color: #000;
}
@media (max-width: 960px) {
  .subtitle--hero--black {
    font-size: 14px;
  }
}

.section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.section-divider__wave {
  width: 100%;
  height: auto;
  display: block;
}
.section-divider__character {
  position: absolute;
  bottom: 40px;
  right: 10%;
  width: 80px;
  height: 80px;
  z-index: 2;
}
.section-divider__character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-tag {
  display: inline-block;
  padding: 2px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.category-tag--outline {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.category-tag--white {
  background-color: #fff;
  color: #000;
}
.category-tag--small {
  padding: 2px 8px;
  font-size: 10px;
}
.category-tag--large {
  padding: 6px 16px;
  font-size: 14px;
}

.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  max-width: 104px;
  height: 46px;
  padding: 0 10px;
  border: 2px solid #000;
  border-radius: 9px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  transition: opacity 0.3s ease;
  background: transparent;
}
.more-link:hover {
  opacity: 0.7;
}
.more-link--white {
  border-color: #fff;
  color: #fff;
}
.more-link--white:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}

.more-link-container--right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 24px;
}

.more-link-container--center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 269px);
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
}
@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.news-item {
  box-sizing: border-box;
  max-width: 269px;
  background: #fff;
  padding: 12px 10px 16px;
  transition: transform 0.3s ease;
}
.news-item:hover {
  transform: translateY(-8px);
}

.news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-image {
  max-width: 248px;
  width: 100%;
  height: 351px;
  overflow: hidden;
  background: #f0f0f0;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date {
  display: block;
  padding: 12px 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1.8px;
}
@media (max-width: 960px) {
  .news-date {
    padding: 8px 0 4px;
  }
}

.news-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 358px);
  column-gap: 30px;
  row-gap: 30px;
  justify-content: center;
}
@media (max-width: 960px) {
  .report-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.report-item {
  max-width: 358px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s ease;
}
.report-item:hover {
  transform: translateY(-8px);
}

.report-link {
  display: block;
  padding: 20px 18px 22px;
  text-decoration: none;
  color: inherit;
}

.report-image {
  width: 100%;
  height: 179px;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 12px;
  border-radius: 20px 0 20px 0;
}
.report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-date {
  font-size: 12px;
  color: #919191;
  letter-spacing: 1.8px;
  font-weight: 700;
  margin-bottom: 4px;
}

.report-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.report-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.member-card {
  flex-shrink: 0;
  width: 214px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}

.member-card__image {
  width: 214px;
  height: 165px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.member-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.member-card__role {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 30px;
}

.member-card__company {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 33px;
  letter-spacing: normal;
}

/* .hero — 共通ヒーロークラス（_hero.scss 相当） */
.hero {
  max-width: 1400px;
  width: 100%;
  position: relative;
}

.hero-margin {
  margin: 160px auto 0;
}
@media (max-width: 960px) {
  .hero-margin {
    margin: 76px auto 0;
  }
}

.hero-margin-top {
  margin-top: 170px;
}

@media (max-width: 960px) {
  .hero-margin-top {
    margin-top: 124px;
  }
}
.hero-image {
  position: relative;
  text-align: center;
  border-radius: 90px 90px 0 0;
  height: 415px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
}

/* テキスト: 写真の上に中央配置 */
.hero-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-icon {
  max-width: 390px;
  max-height: 230px;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 96px;
  right: 87px;
  z-index: 2;
  transform: translateY(50%);
}

.hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 960px) {
  .hero-image {
    height: 215px;
  }
  .hero-image img {
    object-position: center 0%;
  }
  .hero-content {
    top: 20%;
  }
  .hero-icon {
    bottom: 0;
    right: 0;
    top: 40px;
    max-width: 202px;
    max-height: 119px;
  }
}
/* ========================================
   Content Card — 共通コンテンツカード
   文字サイズ、白背景、角丸、padding — 全記事タイプ共通
======================================== */
.content-card {
  position: relative;
  z-index: 2;
  max-width: 1046px;
  margin: 0 auto;
  background: #fff;
  border-radius: 11px;
  padding: 99px 123px 107px;
}
@media (max-width: 960px) {
  .content-card {
    padding: 32px 28px 46px;
  }
}

/* 共通 entry-content タイポグラフィ（サイズ・余白・配置） */
.content-card .entry-content {
  /* 強調ボックス — 共通レイアウト（背景色はページ固有） */
}
.content-card .entry-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 18px;
  letter-spacing: normal;
}
@media (max-width: 960px) {
  .content-card .entry-content h2 {
    font-size: 20px;
  }
}
.content-card .entry-content hr,
.content-card .entry-content .divider {
  border: none;
  border-top: 3px solid currentColor;
  margin: 0;
}
.content-card .entry-content img {
  max-width: 100%;
  height: 100%;
}
.content-card .entry-content .wp-block-image,
.content-card .entry-content .image-placeholder {
  max-width: 799px;
  height: 445px;
  margin: 0 auto;
  padding: 35px 0 46px;
}
.content-card .entry-content .wp-block-image img,
.content-card .entry-content .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .content-card .entry-content .wp-block-image,
  .content-card .entry-content .image-placeholder {
    max-width: 301px;
    height: 221px;
    padding: 23px 0 18px;
  }
}
.content-card .entry-content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 16px;
  letter-spacing: normal;
}
@media (max-width: 960px) {
  .content-card .entry-content h3 {
    font-size: 17px;
  }
}
.content-card .entry-content p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 34px;
  text-align: justify;
  margin-bottom: 34px;
}
@media (max-width: 960px) {
  .content-card .entry-content p {
    font-size: 14px;
    line-height: 26px;
  }
}
.content-card .entry-content strong {
  font-weight: 700;
}
.content-card .entry-content .highlight-box,
.content-card .entry-content .wp-block-group.has-background {
  border-radius: 10px;
  padding: 50px 76px 50px 51px;
  margin: 0;
}
.content-card .entry-content .highlight-box p:last-child,
.content-card .entry-content .wp-block-group.has-background p:last-child {
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .content-card .entry-content .highlight-box,
  .content-card .entry-content .wp-block-group.has-background {
    padding: 22px;
  }
  .content-card .entry-content .highlight-box p,
  .content-card .entry-content .wp-block-group.has-background p {
    font-size: 14px;
    line-height: 28px;
  }
}

.pagination {
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 24px 80px;
  max-width: 1046px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .pagination {
    max-width: 393px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 18px;
    padding: 23px 2px 77px;
  }
}

.pagination__prev,
.pagination__next {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: normal;
  line-height: 34px;
  transition: opacity 0.3s ease;
}
.pagination__prev:hover,
.pagination__next:hover {
  opacity: 0.7;
}
@media (max-width: 960px) {
  .pagination__prev,
  .pagination__next {
    font-size: 16px;
    gap: 2px;
  }
}

.pagination__arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.pagination__arrow svg {
  width: 44px;
  height: 44px;
  display: block;
}
@media (max-width: 960px) {
  .pagination__arrow {
    width: 30px;
    height: 30px;
  }
  .pagination__arrow svg {
    width: 30px;
    height: 30px;
  }
}

/* 前後記事がない場合のプレースホルダー（スペース確保） */
.pagination__prev--hidden,
.pagination__next--hidden {
  visibility: hidden;
  pointer-events: none;
}

.pagination__back {
  min-width: 248px;
  max-width: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .pagination__back {
    max-width: 193px;
    min-width: 193px;
    height: 67px;
    margin: 23px auto 0;
  }
}

/* ========================================
   Numbered Pagination — ページ番号ナビゲーション
   アーカイブ一覧用（NEWS一覧等）
   Figma PC: 636:978, SP: 1088:3524
   PC/SP 同一デザイン
======================================== */
.pagination-numbered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 24px 76px;
  max-width: 1046px;
  margin: 0 auto;
}

.pagination-numbered__arrow {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  display: block;
}
.pagination-numbered__arrow:hover {
  opacity: 0.7;
}
.pagination-numbered__arrow--disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
.pagination-numbered__arrow svg {
  width: 33px;
  height: 33px;
  display: block;
}

.pagination-numbered__pages {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pagination-numbered__page {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #000;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: opacity 0.3s ease;
}
.pagination-numbered__page:hover {
  opacity: 0.7;
}
.pagination-numbered__page.is-current {
  border-bottom-color: #000;
}

.horizontal-scroll__indicator {
  max-width: 351px;
  padding-top: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 26px auto 0;
}

.horizontal-scroll__label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  color: #000;
}

.horizontal-scroll__track {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: #e8e8e8;
  border-radius: 30px;
}

.horizontal-scroll__thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 23px;
  background-color: #000;
  border-radius: 30px;
  transition: left 0.1s ease;
}

/* PC/SP 表示切り替えユーティリティ */
.is-pc {
  display: flex;
}

.is-sp {
  display: none;
}

/* PC/SP 表示切り替え（block版 — img 等に使用） */
.block-is-pc {
  display: block;
}

.block-is-sp {
  display: none;
}

@media (max-width: 960px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: flex;
  }
  .is-sp.pagination {
    display: flex;
  }
  .block-is-pc {
    display: none;
  }
  .block-is-sp {
    display: block;
  }
}
/* ========================================
   波セクション共通 — Option B (top-only wave)
   全波SVG: viewBox 1470x76.0026 → CSS上は76px
   margin-top で前セクションに被さり、padding-top でコンテンツを波の下に押す
======================================== */
.wave-top {
  margin-top: -76px;
  padding-top: 76px;
}