/* =========================================================
   ATR WEBSITE STYLE.CSS - ORGANIZED VERSION
   Base: latest adopted CSS + PICKUP visual switch
   Included final overrides:
   - Footer utility alignment fix
   - Mobile HERO width-fit test
   - PICKUP video/image switch

   Note:
   CSS cascade order is preserved as much as possible.
   Final correction blocks are collected at the end so they are not
   overwritten by earlier legacy rules.
========================================================= */

/* =========================
   RESET
========================= */

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


html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}


body {
  margin: 0;
  padding: 0;

  font-family:
    "Helvetica Neue",
    Arial,
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    sans-serif;

  color: #111;
  background: #fff;

  line-height: 1.7;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}


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


ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}


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


/* =========================
   COMMON
========================= */

.section-inner {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;
  padding:
    120px
    40px;
}


.section-header {
  margin-bottom: 64px;
}


.section-label {
  margin-bottom: 16px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;

  color: #666;

  text-transform: uppercase;
}


.section-title {
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.2;
  font-weight: 700;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid #e5e5e5;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding:
    10px
    40px;
}

.site-logo img {
  width: 90px;
}


.global-nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}


.global-nav-item a {
  font-size: 14px;
  font-weight: 500;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}


.header-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 140px;
  height: 48px;

  padding: 0 24px;

  border: 1px solid #111;
}

/* =========================
   NAV TOGGLE
========================= */

.nav-toggle {
  display: none;
}


/* =========================
   HAMBURGER
========================= */

.hamburger-button {
  display: none;

  position: relative;

  width: 48px;
  height: 48px;

  cursor: pointer;

  z-index: 1200;
}


.hamburger-button span {
  position: absolute;
  left: 12px;

  width: 24px;
  height: 2px;

  background: #111;

  transition: all 0.3s ease;
}


.hamburger-button span:nth-child(1) {
  top: 16px;
}


.hamburger-button span:nth-child(2) {
  top: 23px;
}


.hamburger-button span:nth-child(3) {
  top: 30px;
}


/* =========================
   HAMBURGER ANIMATION
========================= */

.nav-toggle:checked
+ .hamburger-button
span:nth-child(1) {

  top: 23px;
  transform: rotate(45deg);

}


.nav-toggle:checked
+ .hamburger-button
span:nth-child(2) {

  opacity: 0;

}


.nav-toggle:checked
+ .hamburger-button
span:nth-child(3) {

  top: 23px;
  transform: rotate(-45deg);

}

/* =========================
   HERO
========================= */

.hero {
  position: relative;

  width: 100%;
  height: 100vh;

  overflow: hidden;
}


.hero-video {
  width: 100%;
  height: 100%;
}


.hero-video video {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================
   ABOUT
========================= */

.about-header {
  margin-bottom: 48px;
}


.about-subtitle {
  margin-bottom: 24px;

  font-size: 16px;
  color: #666;
}


.about-title {
  font-size: clamp(40px, 5vw, 88px);
  line-height: 1.15;
  font-weight: 700;
}


.about-content {
  max-width: 900px;
}


.about-content p + p {
  margin-top: 24px;
}


/* =========================
   FUTURE MARKET
========================= */

.pickup-card {
  display: block;

  margin-bottom: 80px;
  padding: 56px;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}


.pickup-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.09);
}


.pickup-image img {
  width: 100%;
}


.pickup-number {
  margin-bottom: 24px;

  font-size: 14px;
  font-weight: 700;

  color: #666;
}


.pickup-content h3 {
  margin-bottom: 32px;

  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.3;
}


.pickup-content p + p {
  margin-top: 24px;
}


.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  margin-bottom: 120px;
}


.future-card {
  padding: 32px;

  border: 1px solid #ddd;
}


.future-card h3 {
  margin-bottom: 16px;
}

/* =========================
   PICKUP MAIN
========================= */

.pickup-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "heading heading"
    "text movie"
    "lab lab";
  gap: 40px 56px;
  align-items: start;
}

.pickup-heading {
  grid-area: heading;
}

.pickup-heading h3 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.3;
}

.pickup-text {
  grid-area: text;
  line-height: 2;
}

.pickup-text p + p {
  margin-top: 24px;
}

.pickup-movie {
  grid-area: movie;
  overflow: hidden;
  border-radius: 20px;
}

.pickup-movie iframe,
.pickup-movie video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.pickup-lab {
  grid-area: lab;
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
}

.pickup-lab img {
  max-width: 240px;
  height: auto;
}


/* =========================
   PICKUP MOVIE
========================= */

.pickup-movie {
  border-radius: 20px;

  overflow: hidden;
}


.pickup-movie iframe,
.pickup-movie video {
  display: block;

  width: 100%;
  aspect-ratio: 16 / 9;

  border: 0;
}

/* =========================
   PICKUP LINK
========================= */

.pickup-link {
  margin-top: 32px;
}

.pickup-link a {
  display: inline-flex;
  align-items: center;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;

  color: #111;
}

.pickup-link a:hover {
  text-decoration: underline;
}

.pickup-lab a {
  display: inline-flex;
  align-items: center;
}

.pickup-lab a:hover {
  opacity: 0.75;
}

/* =========================
   FUTURE CARD IMAGE
========================= */

.future-card img {
  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  margin-bottom: 16px;

  border-radius: 12px;
}

/* =========================
   KEYWORD MAP
========================= */

.keyword-map {
  margin-top: 64px;
  margin-bottom: 48px;

  padding: 40px;

  background: #f8f8f8;

  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
}


.keyword-map-header {
  max-width: 860px;

  margin-bottom: 40px;
}


.keyword-map-label {
  margin-bottom: 12px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #777;
}


.keyword-map-title {
  margin-bottom: 16px;

  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
}


.keyword-map-lead {
  font-size: 15px;
  line-height: 1.9;

  color: #555;
}


/* =========================
   KEYWORD MAP BODY
========================= */

.keyword-map-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  position: relative;
}


/* CORE */

.keyword-core {
  grid-column: 1 / -1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: min(100%, 520px);

  margin: 0 auto 16px;
  padding: 28px 32px;

  background: #111;
  color: #fff;

  border-radius: 999px;

  text-align: center;
}


.keyword-core span {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3;
  font-weight: 700;
}


.keyword-core small {
  margin-top: 8px;

  font-size: 12px;
  letter-spacing: 0.12em;

  color: rgba(255, 255, 255, 0.72);
}


/* GROUP */

.keyword-group {
  padding: 28px 24px;

  background: #fff;

  border: 1px solid #ddd;
  border-radius: 18px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}


.keyword-group h5 {
  margin-bottom: 20px;

  padding-bottom: 12px;

  font-size: 16px;
  line-height: 1.5;

  border-bottom: 2px solid #111;
}


.keyword-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.keyword-group li {
  display: inline-flex;
  align-items: center;

  padding: 6px 12px;

  background: #f1f1f1;

  border-radius: 999px;

  font-size: 13px;
  line-height: 1.5;

  color: #333;
}


/* =========================
   LAB LOGO
========================= */

.pickup-lab {
  display: flex;
  justify-content: flex-end;
}


.pickup-lab img {
  max-width: 220px;
  height: auto;
}


/* =========================
   VALUE ECOSYSTEM
========================= */

.value-ecosystem {
  margin-top: 100px;
}

/* =========================
   VALUE CREATION CONTENT
========================= */

.value-creation-content {
  margin-bottom: 72px;
}


/* =========================
   VALUE STATS
========================= */

.value-stats {
  margin-bottom: 64px;
}


.value-stats-header {
  max-width: 900px;
  margin-bottom: 48px;
}


.value-stats-label,
.value-model-label {
  margin-bottom: 12px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #777;
}


.value-stats-title,
.value-model-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.35;
}


.value-stats-lead {
  margin-top: 24px;

  font-size: 16px;
  line-height: 2;
  color: #555;
}


.value-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}


/* =========================
   STATS CARD
========================= */

.stats-card {
  min-height: 220px;

  background: #fff;

  border: 1px solid #ddd;
  border-radius: 10px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.stats-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);

  border-color: #ccc;
}


/* =========================
   STATS CARD LINK
========================= */

.stats-card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;

  padding: 32px 24px;

  color: inherit;
}


.stats-card-link:hover {
  text-decoration: none;
}


/* =========================
   STATS NUMBER
========================= */

.stats-number {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}


.stats-number span {
  margin-left: 4px;

  font-size: 0.42em;
  letter-spacing: 0;
}


.stats-card h4 {
  margin-top: 32px;

  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}


/* =========================
   STATS CARD MORE
========================= */

.stats-card-more {
  display: inline-flex;
  align-items: center;

  margin-top: 28px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #1c2d3f;
}


.stats-card-more::after {
  content: "→";

  margin-left: 8px;

  transition: transform 0.3s ease;
}


.stats-card:hover .stats-card-more::after {
  transform: translateX(4px);
}


/* =========================
   CONNECT MESSAGE
========================= */

.value-connect {
  position: relative;

  max-width: 960px;

  margin:
    72px
    auto;

  padding:
    40px
    56px;

  background: #fff;
  color: #111;

  border: 4px solid #111;
  border-radius: 24px;

  text-align: center;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}


/* 上下の接続線 */
.value-connect::before,
.value-connect::after {
  content: "";

  position: absolute;
  left: 50%;

  width: 1px;
  height: 40px;

  background: #ccc;

  transform: translateX(-50%);
}


.value-connect::before {
  top: -56px;
}


.value-connect::after {
  bottom: -56px;
}


.value-connect p {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.02em;
}


/* =========================
   VALUE MODEL
========================= */

.value-model {
  margin-top: 80px;
}

.value-model-header {
  max-width: 960px;
  margin-bottom: 48px;
}


/* =========================
   VALUE MODEL FLOW
========================= */

.value-model-flow {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-model-flow::before {
  content: "";

  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;

  height: 1px;

  background: #ccc;

  z-index: 0;
}


/* =========================
   MODEL CARD
========================= */

.model-card {
  position: relative;

  padding: 36px 28px;

  background: #fff;

  border: 1px solid #ddd;
  border-radius: 10px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  z-index: 1;
}


.model-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);

  border-color: #ccc;
}


/* =========================
   MODEL STEP / TITLE
========================= */

.model-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  margin-bottom: 20px;

  background: #111;
  color: #fff;

  border-radius: 50%;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}


.model-card h4 {
  margin-bottom: 28px;

  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}


.model-card h4::after {
  content: "";

  display: block;

  width: 48px;
  height: 3px;

  margin-top: 16px;

  background: #111;
}


/* =========================
   MODEL LIST
========================= */

.model-card li {
  font-size: 14px;
  line-height: 1.8;

  color: #555;
}


.model-card li + li {
  margin-top: 8px;
}


/* =========================
   FLOW ARROW
========================= */

.model-card::after {
  content: "→";

  position: absolute;
  top: 40px;
  right: -22px;

  font-size: 24px;
  line-height: 1;

  color: #777;

  z-index: 2;
}


/* =========================
   LOOP MESSAGE
========================= */

.value-model-loop {
  max-width: 960px;

  margin:
    72px
    auto
    0;

  padding:
    40px
    56px;

  background: #fff;
  color: #111;

  border: 4px solid #111;
  border-radius: 24px;

  text-align: center;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}


.value-model-loop p {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.02em;
}


/* =========================
   NEWS
========================= */

.news-section {
  background: #fff;
}

.news-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}


/* =========================
   NEWS / EVENT BOX
========================= */

.news-column,
.event-column {
  padding: 40px;

  background: #fff;

  border: 1px solid #ddd;
  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


.news-column-title,
.event-column-title {
  margin-bottom: 32px;

  font-size: 28px;
  line-height: 1.4;
}


/* =========================
   NEWS / EVENT ITEM
========================= */

.news-item,
.event-item {
  padding: 24px 0;

  border-bottom: 1px solid #e5e5e5;
}


.news-item:first-of-type,
.event-item:first-of-type {
  padding-top: 0;
}


.news-item time,
.event-item time {
  display: block;

  margin-bottom: 10px;

  font-size: 14px;
  color: #777;
}


.news-item a,
.event-item a {
  display: block;

  font-size: 15px;
  line-height: 1.8;
  color: #111;
}


.news-item a:hover,
.event-item a:hover {
  text-decoration: underline;
}


/* =========================
   MORE LINK
========================= */

.news-more,
.event-more {
  margin-top: 32px;
}


.news-more a,
.event-more a {
  display: inline-flex;
  align-items: center;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}


/* =========================
   JOIN ATR
========================= */

.join-atr-section {
  background: #f5f5f5;
}

.join-header {
  max-width: 900px;
}

.section-subtitle {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   JOIN ATR EMPHASIS
========================= */

.join-atr-section {
  background:
    linear-gradient(
      180deg,
      #f1f1f1 0%,
      #fafafa 100%
    );

  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}


.join-atr-section .section-inner {
  padding-top: 140px;
  padding-bottom: 140px;
}


.join-header .section-label {
  color: #111;
}

/* =========================
   JOIN GRID
========================= */

.join-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
}


/* =========================
   JOIN CARD
========================= */

.join-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.join-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.join-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  height: 100%;
  padding: 36px 24px;

  color: #111;
}


/* =========================
   CIRCULAR ILLUSTRATION
========================= */

.join-card-illustration {
  width: 120px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  border-radius: 50%;
  background: #f8f8f8;
  border: 4px solid #e5e5e5;

  overflow: hidden;
}

.join-card-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================
   CARD TEXT
========================= */

.join-card-label {
  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #777;
  text-transform: uppercase;
}

.join-card h3 {
  margin-bottom: 16px;

  font-size: 22px;
  line-height: 1.5;
  color: #111;
}

.join-card p {
  color: #666;
  line-height: 1.8;
}

.join-card-more {
  margin-top: auto;
  padding-top: 28px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #1c2d3f;
}


/* =========================
   CARD SIZE
========================= */

.join-card--large {
  grid-column: span 8;
  min-height: 420px;
}

.join-card--medium {
  grid-column: span 4;
  min-height: 420px;
}

.join-card--small {
  grid-column: span 3;
  min-height: 320px;
}


/* =========================
   LARGE CARD ADJUSTMENT
========================= */

.join-card--large .join-card-link {
  padding: 44px 32px;
}

.join-card--large .join-card-illustration {
  width: 140px;
  height: 140px;
}

.join-card--large h3 {
  font-size: 32px;
}


/* =========================
   MEDIUM CARD ADJUSTMENT
========================= */

.join-card--medium .join-card-link {
  padding: 40px 28px;
}

.join-card--medium .join-card-illustration {
  width: 128px;
  height: 128px;
}

.join-card--medium h3 {
  font-size: 26px;
}


/* =========================
   SMALL CARD ADJUSTMENT
========================= */

.join-card--small .join-card-link {
  padding: 30px 20px;
}

.join-card--small .join-card-illustration {
  width: 100px;
  height: 100px;
}

.join-card--small h3 {
  font-size: 18px;
}


/* =========================
   SECTION SEPARATION
========================= */

.about-section,
.growth-strategy-section,
.value-creation-section,
.news-section,
.join-atr-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}


/* 白系セクション */
.about-section,
.value-creation-section,
.news-section {
  background: #fff;
}


/* 薄い黒系・グレー系セクション */
.growth-strategy-section,
.join-atr-section {
  background: #f6f6f6;
}


/* 黒系セクション前の境目を少し強める */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #000;
  color: #fff;
  border-top: none;
}

.footer-inner {
  padding: 60px 40px 36px;
}

/* =====================
   FOOTER AUDIENCE
====================== */

.footer-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.footer-block,
.footer-lab-column,
.footer-utility-group {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.footer-block--highlight {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-title,
.footer-lab-column h4,
.footer-utility-title {
  margin-bottom: 16px;
  padding-bottom: 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-block li + li,
.footer-lab-column li + li,
.footer-utility-list li + li {
  margin-top: 8px;
}

.footer-block a,
.footer-lab-column a,
.footer-utility-list a {
  font-size: 12px;
  line-height: 1.55;
  color: #ccc;
}

.footer-block a:hover,
.footer-lab-column a:hover,
.footer-utility-list a:hover {
  color: #fff;
  text-decoration: underline;
}

/* =====================
   FOOTER LABS
====================== */

.footer-labs {
  padding: 36px 0;
  margin-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-labs-header {
  margin-bottom: 22px;
}

.footer-labs-title {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.footer-labs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* =====================
   FOOTER UTILITY
====================== */

.footer-utility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.footer-utility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

/* =====================
   FOOTER BOTTOM
====================== */

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.copyright {
  font-size: 12px;
  line-height: 1.6;
  color: #aaa;
  text-align: center;
}
/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1024px) {

  .news-event-grid,
  .value-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-navigation {
    grid-template-columns: 1fr;
  }

  .future-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .keyword-map-body {
  grid-template-columns: repeat(2, 1fr);
}

  .join-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-card--large,
  .join-card--medium,
  .join-card--small {
    grid-column: span 1;
    min-height: auto;
  }

}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 768px) {

  /* =====================
       HEADER
  ====================== */

  .header-inner {
    padding: 16px 20px;
    justify-content: flex-start;
  }

  .site-logo img {
    width: 90px;
  }


  /* =====================
       HAMBURGER
  ====================== */

  .hamburger-button {
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    margin-left: auto;
    cursor: pointer;
    z-index: 1200;
  }

  .hamburger-button span {
    position: absolute;
    left: 12px;
    width: 24px;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
  }

  .hamburger-button span:nth-child(1) {
    top: 16px;
  }

  .hamburger-button span:nth-child(2) {
    top: 23px;
  }

  .hamburger-button span:nth-child(3) {
    top: 30px;
  }

  .nav-toggle:checked + .hamburger-button span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .hamburger-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger-button span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
  }


  /* =====================
       GLOBAL NAV
  ====================== */

  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    padding: 120px 32px 40px;
    background: #fff;
    transition: right 0.4s ease;
    z-index: 1100;
  }

  .nav-toggle:checked ~ .global-nav {
    right: 0;
  }

  .global-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .global-nav-item a {
    font-size: 24px;
  }


  /* =====================
       HEADER ACTIONS
  ====================== */

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    margin-right: 12px;
  }

  .language-switch a {
    font-size: 14px;
    font-weight: 700;
  }

  .header-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #111;
  }


  /* =====================
       COMMON
  ====================== */

  .section-inner {
    padding: 80px 20px;
  }


  /* =====================
       FUTURE MARKET
  ====================== */

  .future-grid {
    grid-template-columns: 1fr;
  }

  .pickup-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "text"
      "movie"
      "lab";
  }

	.pickup-card {
  padding: 28px 20px;
  border-radius: 18px;
}

  .pickup-heading h3 {
    font-size: 28px;
  }

  .keyword-map {
  padding: 28px 20px;
  border-radius: 18px;
}

.keyword-map-body {
  grid-template-columns: 1fr;
}

.keyword-core {
  border-radius: 24px;
}

.keyword-group {
  padding: 24px 20px;
}


  /* =====================
       VALUE ECOSYSTEM
  ====================== */

  .value-stats-grid {
    grid-template-columns: 1fr;
  }

  .value-connect {
    margin: 56px auto;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .value-model-flow {
    grid-template-columns: 1fr;
  }

  .value-model-flow::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .model-card::after {
    content: "↓";
    top: auto;
    right: auto;
    left: 22px;
    bottom: -34px;
  }

.model-card:last-child::after {
  display: none;
}

  .value-model-loop {
    margin-top: 56px;

    padding:
      32px
      24px;

    border-width: 3px;
    border-radius: 18px;
  }


  .value-model-loop p {
    font-size: 17px;
    line-height: 1.9;
  }

.value-connect {
  margin:
    56px
    auto;

  padding:
    32px
    24px;

  border-width: 3px;
  border-radius: 18px;
}


.value-connect p {
  font-size: 17px;
  line-height: 1.9;
}


  /* =====================
       NEWS
  ====================== */

  .news-event-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-column,
  .event-column {
    padding: 28px 20px;
  }


  /* =====================
       JOIN ATR
  ====================== */

  .join-grid {
    grid-template-columns: 1fr;
  }

.join-atr-section .section-inner {
  padding-top: 96px;
  padding-bottom: 96px;
}
  .join-card-link {
    padding: 28px 20px;
  }

  .join-card--large .join-card-illustration,
  .join-card--medium .join-card-illustration,
  .join-card--small .join-card-illustration {
    width: 100px;
    height: 100px;
  }

  .join-card--large h3,
  .join-card--medium h3,
  .join-card--small h3 {
    font-size: 22px;
  }

}


/* =========================================================
   INTEGRATED COMPACT ADJUSTMENT
   全体の余白・行間・カードサイズを統合調整
========================================================= */

/* =====================
   BASE / COMMON
====================== */

body {
  line-height: 1.55;
}

section {
  scroll-margin-top: 76px;
}

.section-inner {
  padding: 88px 40px;
}

.section-header {
  margin-bottom: 44px;
}

.section-label {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section-title {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.22;
}


/* =====================
   HEADER
====================== */

.header-inner {
  padding: 8px 40px;
}

.site-logo img {
  width: 260px;
}

.global-nav-list {
  gap: 28px;
}

.global-nav-item a {
  font-size: 13px;
}

.header-actions {
  gap: 18px;
}

.header-cta a {
  min-width: 124px;
  height: 42px;
  padding: 0 18px;
  font-size: 13px;
}


/* =====================
   ABOUT
====================== */

.about-header {
  margin-bottom: 36px;
}

.about-subtitle {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.about-title {
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.18;
}

.about-content p + p {
  margin-top: 16px;
}


/* =====================
   PICKUP / FUTURE MARKET
====================== */

.pickup-card {
  margin-bottom: 56px;
  padding: 40px;
  border-radius: 18px;
}

.pickup-main {
  gap: 28px 40px;
}

.pickup-number {
  margin-bottom: 14px;
  font-size: 12px;
}

.pickup-heading h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.28;
}

.pickup-text {
  line-height: 1.7;
}

.pickup-text p + p {
  margin-top: 16px;
}

.pickup-movie {
  border-radius: 14px;
}

.pickup-link {
  margin-top: 20px;
}

.pickup-link a {
  font-size: 13px;
}

.pickup-lab {
  padding-top: 8px;
}

.pickup-lab img {
  max-width: 180px;
}


/* =====================
   FUTURE CARD
====================== */

.future-grid {
  gap: 18px;
  margin-bottom: 64px;
}

.future-card {
  padding: 22px;
}

.future-card img {
  margin-bottom: 12px;
  border-radius: 10px;
}

.future-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.future-card p {
  font-size: 14px;
  line-height: 1.55;
}


/* =====================
   KEYWORD MAP
====================== */

.keyword-map {
  margin-top: 44px;
  margin-bottom: 32px;
  padding: 28px;
  border-radius: 18px;
}

.keyword-map-header {
  margin-bottom: 28px;
}

.keyword-map-label {
  margin-bottom: 8px;
  font-size: 11px;
}

.keyword-map-title {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
}

.keyword-map-lead {
  font-size: 14px;
  line-height: 1.65;
}

.keyword-map-body {
  gap: 18px;
}

.keyword-core {
  max-width: 460px;
  margin-bottom: 8px;
  padding: 20px 28px;
}

.keyword-core span {
  font-size: clamp(20px, 2.4vw, 30px);
}

.keyword-core small {
  margin-top: 4px;
  font-size: 11px;
}

.keyword-group {
  padding: 22px 20px;
  border-radius: 14px;
}

.keyword-group h5 {
  margin-bottom: 14px;
  padding-bottom: 10px;
  font-size: 15px;
}

.keyword-group ul {
  gap: 8px;
}

.keyword-group li {
  padding: 5px 10px;
  font-size: 12px;
}


/* =====================
   VALUE CREATION
====================== */

.value-creation-content {
  margin-bottom: 52px;
}

.content-title {
  font-size: 24px;
  line-height: 1.35;
}

.content-text {
  line-height: 1.65;
}

.content-text p + p {
  margin-top: 1.1em;
}

.value-ecosystem {
  margin-top: 72px;
}

.value-pickup-card {
  margin-top: 56px;
  margin-bottom: 72px;
}

.keyword-map--kgap .keyword-core {
  background: #1f2f46;
}


/* =====================
   VALUE STATS
====================== */

.value-stats {
  margin-bottom: 48px;
}

.value-stats-header {
  margin-bottom: 36px;
}

.value-stats-title,
.value-model-title {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.32;
}

.value-stats-lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
}

.value-stats-grid {
  gap: 18px;
}

.stats-card {
  min-height: 180px;
}

.stats-card-link {
  padding: 24px 20px;
}

.stats-number {
  font-size: clamp(36px, 4vw, 56px);
}

.stats-card h4 {
  margin-top: 22px;
  font-size: 14px;
}

.stats-card-more {
  margin-top: 18px;
  font-size: 11px;
}


/* =====================
   CONNECT / LOOP MESSAGE
====================== */

.value-connect,
.value-model-loop {
  max-width: 860px;
  margin: 52px auto;
  padding: 28px 40px;
  border-width: 3px;
  border-radius: 18px;
}

.value-model-loop {
  margin-bottom: 0;
}

.value-connect::before,
.value-connect::after {
  height: 32px;
}

.value-connect::before {
  top: -44px;
}

.value-connect::after {
  bottom: -44px;
}

.value-connect p,
.value-model-loop p {
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.65;
}


/* =====================
   VALUE MODEL
====================== */

.value-model {
  margin-top: 56px;
}

.value-model-header {
  margin-bottom: 36px;
}

.value-model-flow {
  gap: 18px;
}

.value-model-flow::before {
  top: 34px;
}

.model-card {
  padding: 26px 20px;
}

.model-step {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  font-size: 13px;
}

.model-card h4 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.35;
}

.model-card h4::after {
  width: 40px;
  height: 2px;
  margin-top: 12px;
}

.model-card li {
  font-size: 13px;
  line-height: 1.6;
}

.model-card li + li {
  margin-top: 5px;
}

.model-card::after {
  top: 34px;
  right: -18px;
  font-size: 20px;
}

.model-card:last-child::after {
  display: none;
}


/* =====================
   NEWS
====================== */

.news-event-grid {
  gap: 24px;
}

.news-column,
.event-column {
  padding: 30px;
}

.news-column-title,
.event-column-title {
  margin-bottom: 24px;
  font-size: 24px;
}

.news-item,
.event-item {
  padding: 16px 0;
}

.news-item time,
.event-item time {
  margin-bottom: 6px;
  font-size: 13px;
}

.news-item a,
.event-item a {
  font-size: 14px;
  line-height: 1.6;
}

.news-more,
.event-more {
  margin-top: 24px;
}


/* =====================
   JOIN ATR
====================== */

.join-atr-section {
  background:
    linear-gradient(
      180deg,
      #f1f1f1 0%,
      #fafafa 100%
    );
}

.join-atr-section .section-inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-subtitle {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.join-grid {
  gap: 18px;
}

.join-card--large,
.join-card--medium {
  min-height: 340px;
}

.join-card--small {
  min-height: 260px;
}

.join-card--large .join-card-link {
  padding: 34px 28px;
}

.join-card--medium .join-card-link {
  padding: 32px 24px;
}

.join-card--small .join-card-link {
  padding: 24px 18px;
}

.join-card-illustration {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
}

.join-card--large .join-card-illustration {
  width: 116px;
  height: 116px;
}

.join-card--medium .join-card-illustration {
  width: 106px;
  height: 106px;
}

.join-card--small .join-card-illustration {
  width: 86px;
  height: 86px;
}

.join-card-label {
  margin-bottom: 10px;
  font-size: 11px;
}

.join-card--large h3 {
  font-size: 26px;
}

.join-card--medium h3 {
  font-size: 22px;
}

.join-card--small h3 {
  font-size: 16px;
}

.join-card h3 {
  margin-bottom: 10px;
}

.join-card p {
  font-size: 14px;
  line-height: 1.55;
}

.join-card-more {
  padding-top: 20px;
  font-size: 11px;
}


/* =====================
   FOOTER
====================== */

.footer-inner {
  padding: 60px 40px;
}

.footer-navigation {
  gap: 32px 28px;
  margin-bottom: 48px;
}

.footer-title {
  margin-bottom: 16px;
  padding-bottom: 10px;
  font-size: 14px;
}

.footer-column li + li {
  margin-top: 8px;
}

.footer-column a {
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom {
  padding-top: 28px;
}

.copyright {
  font-size: 12px;
}


/* =========================
   RESPONSIVE CONSOLIDATION
========================================================= */

@media screen and (max-width: 1024px) {

  .news-event-grid,
  .value-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
  }

  .future-grid,
  .keyword-map-body,
  .join-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-card--large,
  .join-card--medium,
  .join-card--small {
    grid-column: span 1;
    min-height: auto;
  }

}


@media screen and (max-width: 768px) {

  body {
    line-height: 1.55;
  }

  section {
    scroll-margin-top: 72px;
  }

  .header-inner {
    padding: 12px 20px;
    justify-content: flex-start;
  }

  .site-logo img {
    width: 230px;
  }

  .hamburger-button {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: auto;
    cursor: pointer;
    z-index: 1200;
  }

  .hamburger-button span {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
  }

  .hamburger-button span:nth-child(1) {
    top: 15px;
  }

  .hamburger-button span:nth-child(2) {
    top: 22px;
  }

  .hamburger-button span:nth-child(3) {
    top: 29px;
  }

  .nav-toggle:checked + .hamburger-button span:nth-child(1),
  .nav-toggle:checked + .hamburger-button span:nth-child(3) {
    top: 22px;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 88vw;
    height: 100vh;
    padding: 104px 28px 40px;
    background: #fff;
    transition: right 0.4s ease;
    z-index: 1100;
  }

  .nav-toggle:checked ~ .global-nav {
    right: 0;
  }

  .global-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .global-nav-item a {
    font-size: 21px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 10px;
  }

  .language-switch a {
    font-size: 13px;
    font-weight: 700;
  }

  .header-cta a {
    height: 36px;
    min-width: auto;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 700;
  }

  .section-inner {
    padding: 64px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .about-title {
    font-size: 32px;
    line-height: 1.22;
  }

  .about-content p + p {
    margin-top: 14px;
  }

  .pickup-card {
    margin-bottom: 40px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .pickup-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "text"
      "movie"
      "lab";
    gap: 24px;
  }

  .pickup-heading h3 {
    font-size: 24px;
    line-height: 1.32;
  }

  .pickup-text {
    line-height: 1.65;
  }

  .pickup-text p + p {
    margin-top: 14px;
  }

  .future-grid,
  .keyword-map-body,
  .value-stats-grid,
  .value-model-flow,
  .news-event-grid,
  .join-grid,
  .footer-navigation {
    grid-template-columns: 1fr;
  }

  .future-grid {
    margin-bottom: 44px;
  }

  .keyword-map {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .keyword-core {
    padding: 18px 20px;
    border-radius: 18px;
  }

  .keyword-core span {
    font-size: 20px;
  }

  .keyword-group {
    padding: 18px 16px;
  }

  .value-connect,
  .value-model-loop {
    padding: 24px 20px;
    margin: 40px auto;
    border-width: 3px;
    border-radius: 16px;
  }

  .value-connect p,
  .value-model-loop p {
    font-size: 16px;
    line-height: 1.65;
  }

  .value-model-flow::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .model-card::after {
    content: "↓";
    top: auto;
    right: auto;
    left: 18px;
    bottom: -30px;
  }

  .model-card:last-child::after {
    display: none;
  }

  .news-column,
  .event-column {
    padding: 24px 18px;
  }

  .join-atr-section .section-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .join-card--large,
  .join-card--medium,
  .join-card--small {
    min-height: auto;
  }

  .join-card-link {
    padding: 24px 18px;
  }

  .join-card--large .join-card-illustration,
  .join-card--medium .join-card-illustration,
  .join-card--small .join-card-illustration {
    width: 88px;
    height: 88px;
  }

  .join-card--large h3,
  .join-card--medium h3,
  .join-card--small h3 {
    font-size: 20px;
  }

  .footer-inner {
    padding: 48px 20px;
  }

}


/* =========================
   KEYWORD CORE TEXT ADJUSTMENT
   キーワードコアの不自然な改行を抑制
========================= */

.keyword-core {
  width: auto;
  max-width: 100%;

  padding:
    18px
    36px;
}

.keyword-core span,
.keyword-core small {
  white-space: nowrap;
}

.keyword-core span {
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
}

.keyword-core small {
  font-size: clamp(10px, 1vw, 12px);
  line-height: 1.4;
}


/* =========================
   HEADING WRAP ADJUSTMENT
   見出しの不自然な日本語改行を抑制
========================= */

.section-title,
.about-title,
.pickup-heading h3,
.keyword-map-title,
.value-stats-title,
.value-model-title {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media screen and (min-width: 769px) {

  .section-title,
  .about-title,
  .pickup-heading h3,
  .keyword-map-title,
  .value-stats-title,
  .value-model-title {
    line-break: strict;
  }

}


/* =========================
   KEYWORD CORE TEXT ADJUSTMENT : MOBILE
========================= */

@media screen and (max-width: 768px) {

  .keyword-core {
    width: 100%;

    padding:
      16px
      18px;
  }


  .keyword-core span {
    font-size: clamp(16px, 4.5vw, 20px);
    white-space: normal;
  }


  .keyword-core small {
    font-size: 10px;
    white-space: nowrap;
  }

}


/* =========================
   PICKUP RESEARCH META
   Future Market内の研究所名・URL表示
========================= */

.pickup-research-meta {
  margin-top: 18px;
  padding-top: 18px;

  border-top: 2px solid #111;
}


.pickup-research-name {
  margin-bottom: 6px;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;

  color: #111;
}


.pickup-research-url {
  display: inline-flex;
  align-items: center;

  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;

  color: #555;

  word-break: break-all;
}


.pickup-research-url:hover {
  color: #111;
  text-decoration: underline;
}


@media screen and (max-width: 768px) {

  .pickup-research-meta {
    margin-top: 14px;
    padding-top: 14px;
  }


  .pickup-research-name {
    font-size: 14px;
  }


  .pickup-research-url {
    font-size: 12px;
  }

}

/* =========================
   FUTURE GRID 6 COLUMNS
   PC最大表示で6カードを1行表示
========================= */

.future-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;

  margin-bottom: 56px;
}

.future-card {
  padding: 16px 12px;

  background: #fff;

  border: 1px solid #ddd;
  border-radius: 12px;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.future-card img {
  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  margin-bottom: 10px;

  border-radius: 8px;
}

.future-card h3 {
  margin-bottom: 6px;

  font-size: 14px;
  line-height: 1.4;
}

.future-card p {
  font-size: 12px;
  line-height: 1.5;

  color: #555;
}

@media screen and (max-width: 1024px) {

  .future-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media screen and (max-width: 768px) {

  .future-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

}


/* =========================
   FINAL FOOTER LAYOUT
   AIST風：主要リンク・目的別・研究所・サイト情報
========================= */

.site-footer {
  background: #000;
  color: #fff;
  border-top: none;
}

.footer-inner {
  padding: 64px 40px 40px;
}

.footer-primary {
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-primary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}

.footer-primary-list a {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.footer-primary-list a:hover {
  text-decoration: underline;
}

.footer-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.footer-block {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.footer-block--highlight {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-title {
  margin-bottom: 18px;
  padding-bottom: 12px;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-block li + li {
  margin-top: 8px;
}

.footer-block a {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

.footer-block a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-labs {
  padding: 40px 0;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-labs-header {
  margin-bottom: 28px;
}

.footer-labs-title {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.footer-labs-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
}

.footer-lab-column h4 {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.footer-lab-column li + li {
  margin-top: 8px;
}

.footer-lab-column a {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

.footer-lab-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-utility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-utility-title {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.footer-utility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-utility-list a {
  font-size: 12px;
  line-height: 1.6;
  color: #aaa;
}

.footer-utility-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.copyright {
  font-size: 12px;
  line-height: 1.6;
  color: #aaa;
  text-align: center;
}

/* =========================
   FINAL RESPONSIVE FOOTER
========================= */

@media screen and (max-width: 1024px) {

  .footer-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-labs-grid {
    grid-template-columns: 1fr;
  }

  .footer-utility {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 768px) {

  .footer-inner {
    padding: 48px 20px 32px;
  }

  .footer-primary-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-audience-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-block {
    padding: 20px;
  }

  .footer-labs {
    padding: 32px 0;
  }

  .footer-labs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-utility {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-utility-list {
    flex-direction: column;
    gap: 8px;
  }

}

/* =========================
   FOOTER BLOCK STYLE UNIFIED
   フッター内の各ブロックをカード風に統一
========================= */

.footer-lab-column {
  padding: 24px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.footer-lab-column h4 {
  margin-bottom: 18px;
  padding-bottom: 12px;

  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;

  color: #fff;

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-utility-group {
  padding: 24px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.footer-utility-title {
  margin-bottom: 18px;
  padding-bottom: 12px;

  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;

  color: #fff;

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-primary {
  padding: 24px;

  margin-bottom: 40px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

@media screen and (max-width: 768px) {

  .footer-lab-column,
  .footer-utility-group,
  .footer-primary {
    padding: 20px;
  }

}


/* =========================
   FOOTER RECOMMENDED STRUCTURE RESPONSIVE
========================= */

@media screen and (max-width: 1200px) {
  .footer-audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-labs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .footer-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-labs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-utility {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 48px 20px 32px;
  }

  .footer-audience-grid,
  .footer-labs-grid,
  .footer-utility {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-block,
  .footer-lab-column,
  .footer-utility-group {
    padding: 20px;
  }

  .footer-labs {
    padding: 32px 0;
  }

  .footer-utility-list {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================
   FUTURE GRID 6 COLUMNS
========================= */

.future-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.future-card {
  padding: 16px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.future-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 10px;
  border-radius: 8px;
}

.future-card h3 {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.future-card p {
  font-size: 12px;
  line-height: 1.5;
  color: #555;
}

@media screen and (max-width: 1024px) {
  .future-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .future-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================
   FOOTER ADJUSTMENT 2026-05
   1段目ATRについて横並び／2段目4カード／3段目3カラム
========================= */

.footer-about {
  padding: 24px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.footer-about-title {
  margin-bottom: 16px;
}

.footer-about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-about-list li {
  position: relative;
}

.footer-about-list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 1px;
  height: 1em;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.footer-about-list a {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

.footer-about-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-audience-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.footer-labs-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.footer-lab-column {
  min-height: 100%;
}

.footer-lab-column h4 a {
  color: #fff;
}

.footer-lab-column h4 a:hover {
  text-decoration: underline;
}

.footer-lab-column li {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

.footer-primary {
  display: none;
}

@media screen and (max-width: 1200px) {
  .footer-audience-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-labs-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .footer-labs-grid--three {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .footer-about {
    padding: 20px;
  }

  .footer-about-list {
    flex-direction: column;
    gap: 8px;
  }

  .footer-about-list li + li::before {
    display: none;
  }

  .footer-audience-grid--four {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BASIC RESEARCH LIST
========================= */

.basic-research-list {
  margin-top: 48px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}


/* =========================
   BASIC RESEARCH CARD
========================= */

.basic-research-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;

  padding: 30px;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.basic-research-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.09);

  border-color: rgba(0, 0, 0, 0.2);
}


/* =========================
   BASIC RESEARCH HEADING
========================= */

.basic-research-number {
  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #666;
}


.basic-research-heading h3 {
  margin-bottom: 16px;
  padding-bottom: 14px;

  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;

  border-bottom: 2px solid #111;
}


.basic-research-meta {
  color: #666;
}


.basic-research-meta p {
  font-size: 12px;
  line-height: 1.55;
}


.basic-research-meta p + p {
  margin-top: 6px;
}


/* =========================
   BASIC RESEARCH BODY
========================= */

.basic-research-body h4 {
  margin-bottom: 12px;

  font-size: 16px;
  line-height: 1.4;
}


.basic-research-body p {
  font-size: 14px;
  line-height: 1.65;

  color: #333;
}


/* =========================
   SERVICE TAGS
========================= */

.basic-research-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 18px;
}


.basic-research-services li {
  display: inline-flex;
  align-items: center;

  padding: 5px 10px;

  background: #f1f1f1;

  border-radius: 999px;

  font-size: 12px;
  line-height: 1.5;

  color: #333;
}


/* =========================
   BASIC RESEARCH RESPONSIVE
========================= */

@media screen and (max-width: 1024px) {

  .basic-research-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}


@media screen and (max-width: 768px) {

  .basic-research-list {
    margin-top: 36px;
    gap: 18px;
  }


  .basic-research-card {
    padding: 22px 18px;
    border-radius: 16px;
  }


  .basic-research-heading h3 {
    font-size: 22px;
  }


  .basic-research-body p {
    font-size: 13px;
    line-height: 1.65;
  }

}


/* =========================
   IP PAGE
========================= */

.ip-page {
  background: #fff;
}

.ip-hero {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ip-hero-lead {
  max-width: 840px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

/* =========================
   IP FILTER
========================= */

.ip-filter {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  margin-bottom: 32px;
}

.ip-filter label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.ip-filter input,
.ip-filter select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.ip-filter input:focus,
.ip-filter select:focus {
  outline: none;
  border-color: #111;
}

/* =========================
   RESULT INFO
========================= */

.ip-result-info {
  margin-bottom: 24px;
}

.ip-result-info p {
  font-size: 14px;
  color: #666;
}

/* =========================
   IP ASSET LIST
========================= */

.ip-assets-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================
   IP ASSET CARD
========================= */

.ip-asset-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.ip-asset-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

.ip-asset-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ip-asset-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #f1f1f1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  color: #555;
}

.ip-asset-title {
  margin-bottom: 16px;
  padding-bottom: 14px;
  font-size: 20px;
  line-height: 1.4;
  border-bottom: 2px solid #111;
}

.ip-asset-summary {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.ip-asset-detail {
  margin-bottom: 20px;
  font-size: 13px;
}

.ip-asset-detail div + div {
  margin-top: 8px;
}

.ip-asset-detail dt {
  font-weight: 700;
  color: #111;
}

.ip-asset-detail dd {
  margin: 2px 0 0;
  color: #666;
}

/* =========================
   IP KEYWORDS
========================= */

.ip-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.ip-keyword-list li {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: #f7f7f7;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}

/* =========================
   IP FOOTER LINK
========================= */

.ip-asset-footer {
  margin-top: 24px;
}

.ip-asset-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1c2d3f;
}

.ip-asset-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.ip-asset-link:hover::after {
  transform: translateX(4px);
}

.ip-empty,
.ip-error {
  padding: 32px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 12px;
  color: #555;
}

/* =========================
   IP RESPONSIVE
========================= */

@media screen and (max-width: 1024px) {
  .ip-assets-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .ip-filter {
    grid-template-columns: 1fr;
  }

  .ip-assets-list {
    grid-template-columns: 1fr;
  }

  .ip-asset-card {
    min-height: auto;
    padding: 24px 20px;
  }
}


/* =========================================================
   FINAL INTEGRATION OVERRIDES
   成長戦略／基礎研究カード／PDF導線／フッター案内／IPページ
========================================================= */

/* IPページは固定ヘッダー分だけ上部を確保 */
.ip-page {
  padding-top: 64px;
}

/* BASIC RESEARCH：PC 2列 × 2行、スマホ1列 */
.basic-research-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.basic-research-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.basic-research-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.basic-research-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.basic-research-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #111;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #111;
}

.basic-research-pdf::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.basic-research-pdf:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.basic-research-pdf:hover::after {
  transform: translateX(4px);
}

/* FOOTER：ATRについて + ATRからのご案内 */
.footer-about-row + .footer-notice-row {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-about-title,
.footer-notice-title {
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-notice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-notice-list li {
  position: relative;
}

.footer-notice-list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 1px;
  height: 1em;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.footer-notice-list a {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

.footer-notice-list a:hover {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .basic-research-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .ip-page {
    padding-top: 58px;
  }

  .basic-research-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .basic-research-card {
    padding: 24px 20px;
  }

  .footer-notice-list {
    flex-direction: column;
    gap: 8px;
  }

  .footer-notice-list li + li::before {
    display: none;
  }
}


/* =========================================================
   SUB PAGE DESIGN SYSTEM
   JOIN ATR配下ページ用：共通ヘッダー・フッターと整合
========================================================= */

.subpage {
  background: #fff;
}

.subpage-hero {
  padding-top: 72px;
  background: linear-gradient(180deg, #f6f6f6 0%, #fff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.subpage-hero .section-inner {
  padding-top: 128px;
  padding-bottom: 88px;
}

.subpage-title {
  max-width: 980px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.subpage-lead {
  max-width: 920px;
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
  color: #555;
}

.sub-section {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sub-section--muted {
  background: #f6f6f6;
}

.sub-section-header {
  max-width: 920px;
  margin-bottom: 40px;
}

.sub-section-title {
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.3;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subpage-card,
.subpage-text-card,
.subpage-list-item,
.subpage-stat,
.subpage-step,
.subpage-faq-item,
.subpage-flow-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.subpage-card {
  padding: 28px;
}

.subpage-card h3,
.subpage-step h3,
.subpage-faq-item h3,
.subpage-flow-item h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  color: #111;
}

.subpage-card h3::after,
.subpage-step h3::after,
.subpage-faq-item h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  background: #111;
}

.subpage-card p,
.subpage-text-card p,
.subpage-step p,
.subpage-faq-item p,
.subpage-flow-item p,
.subpage-stat p,
.subpage-list-item {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.subpage-text-card {
  max-width: 960px;
  padding: 32px 36px;
}

.subpage-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.subpage-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: #111;
}

.subpage-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
}

.subpage-step {
  padding: 26px 28px;
  border-left: 4px solid #111;
}

.subpage-flow {
  display: grid;
  grid-template-columns: repeat(9, auto);
  gap: 14px;
  align-items: center;
}

.subpage-flow-item {
  min-width: 150px;
  padding: 24px 20px;
  text-align: center;
}

.subpage-flow-item h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.subpage-flow-arrow {
  font-size: 22px;
  color: #777;
}

.subpage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.subpage-stat {
  padding: 28px 20px;
  text-align: center;
}

.subpage-stat-number {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 50px) !important;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111 !important;
}

.subpage-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.subpage-faq-item {
  padding: 26px 28px;
}

.subpage-cta {
  background: #111;
  color: #fff;
  text-align: center;
}

.subpage-cta .section-inner {
  padding-top: 96px;
  padding-bottom: 96px;
}

.subpage-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.3;
}

.subpage-cta p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.subpage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 32px;
  padding: 0 24px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.subpage-button::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.subpage-button:hover::after {
  transform: translateX(4px);
}

@media screen and (max-width: 1200px) {
  .subpage-flow {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .subpage-flow-arrow {
    text-align: center;
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 1024px) {
  .subpage-grid,
  .subpage-stats,
  .subpage-list-grid,
  .subpage-faq {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .subpage-hero .section-inner {
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .subpage-title {
    font-size: 34px;
    line-height: 1.18;
  }

  .subpage-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .sub-section-header {
    margin-bottom: 28px;
  }

  .subpage-grid,
  .subpage-stats,
  .subpage-list-grid,
  .subpage-faq {
    grid-template-columns: 1fr;
  }

  .subpage-card,
  .subpage-text-card,
  .subpage-step,
  .subpage-faq-item {
    padding: 22px 20px;
    border-radius: 14px;
  }

  .subpage-cta .section-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* =========================
   IP RESOURCE SECTION
   公開ソフトウェア・データ・知財活用相談
========================= */

.ip-resource-section {
  background: #f6f6f6;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ip-section-lead {
  max-width: 840px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.ip-resource-group + .ip-resource-group {
  margin-top: 56px;
}

.ip-resource-group-title {
  margin-bottom: 24px;
  padding-bottom: 12px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  border-bottom: 2px solid #111;
}

.ip-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ip-resource-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.ip-resource-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.ip-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

.ip-resource-card-link {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  height: 100%;
  padding: 26px 24px;
  color: inherit;
}

.ip-resource-label {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #777;
  text-transform: uppercase;
}

.ip-resource-card h4 {
  margin-bottom: 16px;
  padding-bottom: 14px;
  font-size: 20px;
  line-height: 1.4;
  border-bottom: 2px solid #111;
}

.ip-resource-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.ip-resource-more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1c2d3f;
}

.ip-resource-more::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.ip-resource-card:hover .ip-resource-more::after {
  transform: translateX(4px);
}

.ip-consult-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 64px;
  padding: 36px 40px;
  background: #111;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.ip-consult-content h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35;
}

.ip-consult-content p {
  color: rgba(255, 255, 255, 0.75);
}

.ip-consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 28px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ip-consult-button::after {
  content: "→";
  margin-left: 8px;
}

.ip-consult-button:hover {
  opacity: 0.82;
}

@media screen and (max-width: 1024px) {
  .ip-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .ip-resource-grid,
  .ip-resource-grid--two {
    grid-template-columns: 1fr;
  }

  .ip-resource-card-link {
    min-height: auto;
    padding: 24px 20px;
  }

  .ip-consult-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .ip-consult-button {
    width: 100%;
  }
}

/* =========================================================
   FINAL IP RESOURCE OVERRIDE
   IPページ：公開ソフトウェア・データ・知財活用相談
   既存の汎用 .grid / .card / section 指定との競合を避けるため、.ip-page 配下に限定
========================================================= */

.ip-page .ip-resource-section {
  background: #f6f6f6;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ip-page .ip-section-lead {
  max-width: 840px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.ip-page .ip-resource-group + .ip-resource-group {
  margin-top: 56px;
}

.ip-page .ip-resource-group-title {
  margin-bottom: 24px;
  padding-bottom: 12px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  border-bottom: 2px solid #111;
}

.ip-page .ip-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ip-page .ip-resource-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ip-page .ip-resource-card {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.ip-page .ip-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

.ip-page .ip-resource-card-link {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  height: 100%;
  padding: 26px 24px;
  color: inherit;
  text-decoration: none;
}

.ip-page .ip-resource-label {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #777;
  text-transform: uppercase;
}

.ip-page .ip-resource-card h4 {
  margin-bottom: 16px;
  padding-bottom: 14px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  border-bottom: 2px solid #111;
}

.ip-page .ip-resource-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.ip-page .ip-resource-more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1c2d3f;
}

.ip-page .ip-resource-more::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.ip-page .ip-resource-card:hover .ip-resource-more::after {
  transform: translateX(4px);
}

.ip-page .ip-consult-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 64px;
  padding: 36px 40px;
  background: #111;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.ip-page .ip-consult-content h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35;
  color: #fff;
}

.ip-page .ip-consult-content p {
  color: rgba(255, 255, 255, 0.75);
}

.ip-page .ip-consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 28px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.ip-page .ip-consult-button::after {
  content: "→";
  margin-left: 8px;
}

.ip-page .ip-consult-button:hover {
  opacity: 0.82;
}

@media screen and (max-width: 1024px) {
  .ip-page .ip-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .ip-page .ip-resource-grid,
  .ip-page .ip-resource-grid--two {
    grid-template-columns: 1fr;
  }

  .ip-page .ip-resource-card-link {
    min-height: auto;
    padding: 24px 20px;
  }

  .ip-page .ip-consult-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .ip-page .ip-consult-button {
    width: 100%;
  }
}


/* =========================
   NEWS / EVENT CSV DISPLAY
========================= */

.news-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 3px 9px;
  background: #f1f1f1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  color: #555;
}

.news-loading,
.news-empty,
.news-error {
  padding: 20px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.news-archive-section {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-filter-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
  padding: 24px;
  background: #f6f6f6;
  border: 1px solid #ddd;
  border-radius: 16px;
}

.news-filter-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
}

.news-filter-field input,
.news-filter-field select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.news-filter-field input:focus,
.news-filter-field select:focus {
  outline: none;
  border-color: #111;
}

.news-archive-result {
  margin-bottom: 24px;
  font-size: 14px;
  color: #666;
}

.news-year-block + .news-year-block {
  margin-top: 48px;
}

.news-year-title {
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
  border-bottom: 2px solid #111;
}

.news-archive-list {
  display: grid;
  gap: 16px;
}

.news-archive-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-archive-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

.news-archive-link {
  display: block;
  padding: 22px 24px;
}

.news-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.news-archive-type,
.news-archive-date,
.news-archive-category {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.news-archive-type {
  background: #111;
  color: #fff;
  letter-spacing: 0.08em;
}

.news-archive-date,
.news-archive-category {
  background: #f1f1f1;
  color: #555;
}

.news-archive-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.news-archive-summary {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.news-archive-source {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1c2d3f;
}

.news-archive-source::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.news-archive-item:hover .news-archive-source::after {
  transform: translateX(4px);
}

@media screen and (max-width: 768px) {
  .news-filter-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .news-archive-link {
    padding: 20px;
  }
}

/* =========================
   GLOBAL NAV 15PX NORMAL WEIGHT - FINAL OVERRIDE
   フォントサイズ15px維持／ノーマルウェイト／2行化抑制
========================= */

@media screen and (min-width: 769px) {

  .header-inner {
    gap: 18px;
  }

  .global-nav {
    flex: 1 1 auto;
  }

  .global-nav-list {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 26px);
  }

  .global-nav-item {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .global-nav-item a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .header-cta a,
  .language-switch a {
    font-weight: 400;
  }

}

@media screen and (min-width: 769px) and (max-width: 1180px) {

  .header-inner {
    padding-left: 28px;
    padding-right: 28px;
    gap: 14px;
  }

  .global-nav-list {
    gap: 14px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-cta a {
    min-width: 112px;
    padding-left: 14px;
    padding-right: 14px;
  }

}

@media screen and (min-width: 769px) and (max-width: 1040px) {

  .global-nav-list {
    gap: 10px;
  }

  .global-nav-item a {
    font-size: 14px;
    letter-spacing: 0;
  }

}

/* =========================
   PICKUP TABS - FINAL OVERRIDE
   成長戦略PICKUPをCSSタブとして表示
========================= */

.pickup-tabs {
  margin-top: 8px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.pickup-tabs > input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.pickup-tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 14px 14px 0;
  background: #f6f6f6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.pickup-tab-buttons label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  color: #555;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.pickup-tab-buttons label:hover {
  color: #111;
  transform: translateY(-2px);
}

.pickup-tab-panels {
  background: #fff;
}

.pickup-tab-panel {
  display: none;
}

#pickup-tab-01:checked ~ .pickup-tab-buttons label[for="pickup-tab-01"],
#pickup-tab-02:checked ~ .pickup-tab-buttons label[for="pickup-tab-02"],
#pickup-tab-03:checked ~ .pickup-tab-buttons label[for="pickup-tab-03"] {
  position: relative;
  bottom: -1px;
  background: #fff;
  color: #111;
  border-color: rgba(0, 0, 0, 0.12);
}

#pickup-tab-01:checked ~ .pickup-tab-panels .pickup-tab-panel--01,
#pickup-tab-02:checked ~ .pickup-tab-panels .pickup-tab-panel--02,
#pickup-tab-03:checked ~ .pickup-tab-panels .pickup-tab-panel--03 {
  display: block;
}

.pickup-tab-panel .pickup-card {
  margin: 0;
  padding: 44px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.pickup-tab-panel .pickup-card:hover {
  box-shadow: none;
}

/* =========================
   PICKUP TAB NEXT BUTTON
========================= */

.pickup-tab-next {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: right;
}

.pickup-tab-next label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.pickup-tab-next label:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.pickup-tab-next--last label {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

@media screen and (max-width: 768px) {

  .pickup-tabs {
    border-radius: 18px;
  }

  .pickup-tab-buttons {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .pickup-tab-buttons label {
    min-height: 48px;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
  }

  #pickup-tab-01:checked ~ .pickup-tab-buttons label[for="pickup-tab-01"],
  #pickup-tab-02:checked ~ .pickup-tab-buttons label[for="pickup-tab-02"],
  #pickup-tab-03:checked ~ .pickup-tab-buttons label[for="pickup-tab-03"] {
    bottom: auto;
    background: #111;
    color: #fff;
    border-color: #111;
  }

  .pickup-tab-panel .pickup-card {
    padding: 26px 18px;
  }

  .pickup-tab-next {
    text-align: left;
  }

  .pickup-tab-next label {
    width: 100%;
    border-radius: 12px;
  }

}


/* =========================
   GLOBAL NAV LETTER SPACING / CTA COLOR OVERRIDE
   グローバルナビ文字間隔を微調整／JOIN ATRをATRロゴ系カラーに変更
========================= */

:root {
  --atr-logo-color: #f0330d;
}

@media screen and (min-width: 769px) {

  .global-nav-list {
    gap: clamp(12px, 1.55vw, 24px);
  }

  .global-nav-item a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .header-cta a {
    background: var(--atr-logo-color);
    border-color: var(--atr-logo-color);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition:
      background 0.3s ease,
      border-color 0.3s ease,
      color 0.3s ease,
      opacity 0.3s ease;
  }

  .header-cta a:hover {
    opacity: 0.82;
  }

}

@media screen and (min-width: 769px) and (max-width: 1180px) {

  .global-nav-list {
    gap: 12px;
  }

  .global-nav-item a {
    letter-spacing: 0.02em;
  }

  .header-cta a {
    letter-spacing: 0.04em;
  }

}

@media screen and (min-width: 769px) and (max-width: 1040px) {

  .global-nav-list {
    gap: 9px;
  }

  .global-nav-item a {
    font-size: 14px;
    letter-spacing: 0.01em;
  }

}

@media screen and (max-width: 768px) {

  .header-cta a {
    background: var(--atr-logo-color);
    border-color: var(--atr-logo-color);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

}

/* =========================================================
   MAIN TEXT WRAP FIX
   フルスクリーン時の本文・KEYWORD MAP本文の途中折り返しを抑制
   対象：未来を創った基礎研究本文 / KEYWORD MAP本文 4箇所
========================================================= */

/* 未来を創った基礎研究：本文幅を広げ、PCフルスクリーン時の不自然な折り返しを抑える */
.about-content {
  max-width: 1180px;
}

.about-content p {
  max-width: 1180px;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

/* KEYWORD MAP：各PICKUP内の説明本文を広く使う */
.keyword-map-header {
  max-width: 1180px;
}

.keyword-map-lead {
  max-width: 1180px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

/* タブ化されたPICKUP内でも同じ指定を確実に適用 */
.pickup-tab-panel .keyword-map-header,
.pickup-tab-panel .keyword-map-lead {
  max-width: 1180px;
}

/* ただし狭い画面では横はみ出しを防ぐ */
@media screen and (max-width: 1024px) {
  .about-content,
  .about-content p,
  .keyword-map-header,
  .keyword-map-lead,
  .pickup-tab-panel .keyword-map-header,
  .pickup-tab-panel .keyword-map-lead {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about-content p,
  .keyword-map-lead {
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: auto;
    line-height: 1.75;
  }
}

/* =========================
   PICKUP VISUAL SWITCH
   PICKUP内の埋め込み動画 / 1枚絵をclassで切り替え
   - is-video : iframe動画を表示
   - is-image : img画像を表示
========================= */

.pickup-visual {
  grid-area: movie;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #f3f3f3;
}

.pickup-visual .pickup-movie,
.pickup-visual .pickup-image {
  display: none;
}

.pickup-visual.is-video .pickup-movie,
.pickup-visual.is-image .pickup-image {
  display: block;
}

.pickup-visual .pickup-movie {
  grid-area: auto;
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
}

.pickup-visual .pickup-movie iframe,
.pickup-visual .pickup-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
}

.pickup-visual .pickup-image img {
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.pickup-visual.is-video .pickup-image,
.pickup-visual.is-image .pickup-movie {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pickup-visual {
    border-radius: 12px;
  }

  .pickup-visual .pickup-movie iframe,
  .pickup-visual .pickup-image img {
    border-radius: 12px;
  }
}



/* =========================================================
   FINAL OVERRIDES / LATEST FIXES
   ここより下は最新修正を確実に効かせるための最終上書きです。
========================================================= */

/* =========================================================
   FOOTER UTILITY FINAL ALIGNMENT FIX
   ATR関連会社 / サイト情報 の1項目目だけ高く見える問題を解消
   原因：既存の .footer-utility-list が flex + li + li margin-top の混在状態になっていたため。
========================================================= */

.footer-utility {
  align-items: stretch;
}

.footer-utility-group {
  display: flex !important;
  flex-direction: column !important;
}

.footer-utility-title {
  flex: 0 0 auto;
}

.footer-utility-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-utility-list li,
.footer-utility-list li + li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.6 !important;
}

.footer-utility-list a {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: #aaa;
}

.footer-utility-list a:hover {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer-utility-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* =========================
   HERO MOBILE WIDTH FIT TEST
   スマホ表示時のみHERO動画を画面幅基準（16:9）で表示
========================= */

@media screen and (max-width: 768px) {

  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-video {
    width: 100%;
    height: 100%;
  }

  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

}
/* =========================
   HERO WIDTH FULL - ALL DEVICES
   PC / Tablet / Smartphone 共通で横幅基準の16:9表示に統一
========================= */

.hero {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
}

.hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media screen and (max-width: 768px) {
  .hero {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
  }
}

/* =========================
   MOBILE HEADER TRANSPARENCY - SAFE OVERRIDE
   スマホ表示時のみ、固定ヘッダーを白の半透明にして
   HERO動画の上部が見えやすくなるように調整
========================= */

@media screen and (max-width: 768px) {

  .site-header {
    background: rgba(255, 255, 255, 0.72) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(229, 229, 229, 0.55);
  }

}


/* =========================
   PICKUP LOCAL VIDEO
   YouTube iframeと同じ枠でローカル動画を表示
========================= */

.pickup-movie video {
  object-fit: cover;
  background: #000;
}


/* =========================
   PICKUP LOCAL VIDEO FRAME FIX
   ローカル動画でもYouTube埋め込み時と同じ16:9の表示枠を維持
========================= */

.pickup-visual .pickup-movie {
  aspect-ratio: 16 / 9;
  background: #000;
}

.pickup-visual .pickup-movie iframe,
.pickup-visual .pickup-movie video,
.pickup-visual .pickup-image img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
}

.pickup-visual .pickup-movie video,
.pickup-visual .pickup-image img {
  object-fit: cover;
  object-position: center center;
}

@media screen and (max-width: 768px) {
  .pickup-visual .pickup-movie iframe,
  .pickup-visual .pickup-movie video,
  .pickup-visual .pickup-image img {
    border-radius: 12px;
  }
}

/* =========================================================
   HEADER NAV TRUE CENTER FIX
   ロゴ幅は変更せず、PC表示時のグローバルナビだけを画面中央に固定
========================================================= */

@media screen and (min-width: 769px) {

  .header-inner {
    position: relative;
  }

  .global-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: none;
  }

  .global-nav-list {
    justify-content: center;
    gap: clamp(10px, 1.2vw, 20px);
  }

  .header-actions {
    margin-left: auto;
  }

}


/* =========================
   VALUE CREATION CASE BUTTON
   「事例を見る」リンクをPDFボタン系の黒ホバーに統一
========================= */

.value-case-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;
  margin-left: 10px;
  padding: 0 20px;

  border: 1px solid #111;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;

  color: #111;
  background: #fff;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.value-case-button:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .value-case-button {
    margin-top: 12px;
    margin-left: 0;
  }
}
