/* ========== グレインオーバーレイ（映画的質感） ========== */
.corp-main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 220px 220px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ========== スプリットテキスト：1文字ずつフェードアップ ========== */
[data-split-text] .split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 35ms);
  will-change: opacity, transform;
}

[data-split-text].is-split-revealed .split-char {
  opacity: 1;
  transform: translateY(0);
}

/* スプリット適用要素は元のフェードアップアニメを無効化 */
.corp-fv__title-sub[data-split-text],
.corp-fv__title-main[data-split-text] {
  animation: none !important;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-split-text] .split-char {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== スクロール画像ズーム ========== */
[data-scroll-zoom] {
  overflow: hidden;
}

[data-scroll-zoom] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.4s linear;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-zoom] img {
    transform: none !important;
    transition: none;
  }
}

/* ========== Fixed Background Layer (視差演出) ========== */
.corp-bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.corp-bg-fixed__media {
  position: absolute;
  inset: 0;
  background: #07111e;
  overflow: hidden;
}

.corp-bg-fixed__media img,
.corp-bg-fixed__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 2本以上時のクロスフェード制御（CSS は fv__bg と同じ仕組み） */
.corp-bg-fixed__media[data-video-crossfade] {
  position: relative;
  width: 100%;
  height: 100%;
}

.corp-bg-fixed__media[data-video-crossfade] .corp-bg-fixed__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.corp-bg-fixed__media[data-video-crossfade] .corp-bg-fixed__video.is-active {
  opacity: 1;
}

.corp-bg-fixed__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 17, 30, var(--corp-overlay-opacity, 0.35));
  transition: background-color 0.2s linear;
}

/* メイン要素の上にコンテンツを重ねる */
.corp-main {
  position: relative;
  z-index: 1;
}

/* ========== Corporate FV ========== */
.corp-fv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  z-index: 2;
}

.corp-fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 30, 0.45) 0%, rgba(7, 17, 30, 0.15) 55%, rgba(7, 17, 30, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
}

.corp-fv__orbit {
  position: absolute;
  right: 30px;
  bottom: -50px;
  width: 320px;
  height: 320px;
  z-index: 1;
  pointer-events: none;
}

.corp-fv__orbit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: corp-fv-orbit-rotate 40s linear infinite;
}

@keyframes corp-fv-orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.corp-fv__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 200px 60px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.corp-fv__content {
  max-width: 640px;
  color: #fff;
  margin-bottom: 80px;
}

/* eyebrow ラベル */
.corp-fv__eyebrow {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  margin: 0 0 28px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  animation: corp-fv-fade-up 0.9s 0.1s both cubic-bezier(0.22, 1, 0.36, 1);
}

.corp-fv__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, #c4a576, transparent);
}

/* タイトル */
.corp-fv__title {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  margin: 0 0 36px;
  line-height: 1.55;
  color: #fff;
}

.corp-fv__title-sub {
  display: block;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  animation: corp-fv-fade-up 0.9s 0.25s both cubic-bezier(0.22, 1, 0.36, 1);
}

.corp-fv__title-main {
  display: block;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: corp-fv-fade-up 0.9s 0.4s both cubic-bezier(0.22, 1, 0.36, 1);
}

.corp-fv__title-em {
  font-style: normal;
  color: #c8d3de;
}

/* スプリットテキスト適用時：1文字ごとにメタリックグラデ */
.corp-fv__title-em .split-char {
  background: linear-gradient(135deg, #c8d3de 0%, #f4f6f9 45%, #aab8c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* 説明文 */
.corp-fv__desc {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 44px;
  animation: corp-fv-fade-up 0.9s 0.55s both cubic-bezier(0.22, 1, 0.36, 1);
}

/* CTAボタン */
.corp-fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 280px;
  padding: 18px 24px 18px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  animation: corp-fv-fade-up 0.9s 0.7s both cubic-bezier(0.22, 1, 0.36, 1);
}

.corp-fv__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  padding-right: 20px;
}

.corp-fv__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.corp-fv__btn:hover .corp-fv__btn-arrow {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.85);
}

@keyframes corp-fv-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .corp-fv__eyebrow,
  .corp-fv__title-sub,
  .corp-fv__title-main,
  .corp-fv__desc,
  .corp-fv__btn {
    animation: none;
  }
}

/* ========== Responsive ========== */
@media screen and (max-width: 1024px) {
  .corp-fv__inner {
    padding: 160px 40px 80px;
  }

  .corp-fv__orbit {
    right: 40px;
    width: 220px;
    height: 220px;
  }

  .corp-fv__title-sub {
    font-size: 28px;
  }

  .corp-fv__title-main {
    font-size: 52px;
  }
}

@media screen and (max-width: 768px) {
  .corp-fv {
    min-height: 88vh;
  }

  .corp-fv__overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 30, 0.55) 0%, rgba(7, 17, 30, 0.35) 60%, rgba(7, 17, 30, 0.6) 100%);
  }

  .corp-fv__inner {
    padding: 100px 24px 40px;
    justify-content: center;
  }

  .corp-fv__content {
    max-width: 100%;
    text-align: center;
  }

  .corp-fv__eyebrow {
    padding-left: 0;
    padding-bottom: 14px;
    margin-bottom: 24px;
  }

  .corp-fv__eyebrow::before {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: 32px;
    background: linear-gradient(90deg, transparent, #c4a576, transparent);
  }

  .corp-fv__orbit {
    right: 20px;
    width: 170px;
    height: 170px;
    opacity: 0.4;
  }

  .corp-fv__title {
    margin-bottom: 24px;
  }

  .corp-fv__title-sub {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .corp-fv__title-main {
    font-size: 30px;
    letter-spacing: 0.04em;
  }

  .corp-fv__desc {
    font-size: 13px;
    line-height: 1.9;
    margin: 0 auto 32px;
    max-width: 380px;
    text-align: left;
  }

  .corp-fv__desc br {
    display: none;
  }

  .corp-fv__btn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 20px 16px 28px;
    font-size: 12px;
  }
}

/* ========== Stack: ABOUT + VISION (重なって出現) ========== */
.corp-stack {
  position: relative;
}

/* ========== Corporate ABOUT ========== */
.corp-about {
  background: linear-gradient(
    to bottom,
    rgba(7, 17, 30, 0) 0%,
    rgba(7, 17, 30, 0.3) 30%,
    rgba(7, 17, 30, 0.65) 65%,
    rgba(7, 17, 30, 0.88) 100%
  );
  padding: 200px 40px 180px;
  color: #fff;
  position: sticky;
  top: calc(100vh - var(--corp-about-h, 100vh));
  margin-top: -1px;
  z-index: 1;
}

.corp-about__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し群 */
.corp-about__heading-wrap {
  margin-bottom: 140px;
}

.corp-about__heading-sub {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.corp-about__heading-main {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.corp-about__heading-en {
  font-family: "Source Han Serif JP", "Noto Serif JP", serif;
  font-size: 56px;
  font-weight: 600;
  color: #1c3a5c;
  margin: -10px 0 0;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* 本文 */
.corp-about__body {
  font-size: 16px;
  line-height: 2.4;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-weight: 400;
}

.corp-about__body p {
  margin: 0 0 110px;
}

.corp-about__body p:last-child {
  margin-bottom: 110px;
}

/* キーワードのアクセント */
.corp-about__em {
  font-style: normal;
  color: #d8c294;
}

/* 結びの一文 */
.corp-about__credo {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #fff;
  position: relative;
  padding-top: 56px;
}

.corp-about__credo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(216, 194, 148, 0.7));
}

/* [data-reveal] ベースルールは home.css に共有定義済み */

/* em：行表示が完了してから少し遅れて色がゴールドに灯る */
.corp-about__em {
  color: inherit;
  transition: color 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.2s;
}

[data-reveal].is-visible .corp-about__em {
  color: #d8c294;
}

/* credo（結び）：縦線が伸びた直後に文字が現れる */
.corp-about__credo[data-reveal] {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.corp-about__credo[data-reveal]::before {
  height: 0;
  transition: height 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.corp-about__credo[data-reveal].is-visible::before {
  height: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .corp-about__em {
    color: #d8c294;
    transition: none;
  }
  .corp-about__credo[data-reveal]::before {
    height: 32px;
    transition: none;
  }
}

/* CTA ABOUTボタン */
.corp-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 11px 40px;
  background: linear-gradient(to right, #0a0a0a, #102340);
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  transition: opacity 0.3s, transform 0.3s;
}

.corp-about__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .corp-about {
    padding: 90px 32px 80px;
  }

  .corp-about__heading-en {
    font-size: 56px;
    margin-top: -22px;
  }
}

@media screen and (max-width: 768px) {
  .corp-about {
    padding: 64px 24px 260px;
  }

  .corp-about__inner {
    max-width: 100%;
  }

  .corp-about__heading-wrap {
    margin-bottom: 40px;
  }

  .corp-about__heading-sub {
    font-size: 22px;
  }

  .corp-about__heading-main {
    font-size: 22px;
  }

  .corp-about__heading-en {
    font-size: 44px;
    margin-top: -7px;
  }

  .corp-about__body {
    font-size: 14px;
    line-height: 2.1;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .corp-about__body p {
    margin-bottom: 60px;
  }

  .corp-about__body p:last-child {
    margin-bottom: 60px;
  }

  .corp-about__credo {
    font-size: 18px;
    letter-spacing: 0.1em;
    padding-top: 40px;
  }

  .corp-about__credo::before {
    height: 24px;
  }

  .corp-about__btn {
    min-width: 180px;
    padding: 14px 28px;
    font-size: 13px;
  }
}

/* ========== Corporate VISION ========== */
.corp-vision {
  background: #e9f1f7;
  padding: 110px 40px 100px;
  color: #15181c;
  position: relative;
  z-index: 2;
}

.corp-vision__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し群 */
.corp-vision__heading-wrap {
  margin-bottom: 56px;
}

.corp-vision__br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .corp-vision__br-sp {
    display: inline;
  }

  .corp-vision__comma-pc {
    display: none;
  }
}

.corp-vision__heading-sub {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  color: #15181c;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.corp-vision__heading-main {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  color: #15181c;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.corp-vision__heading-en {
  font-family: "Source Han Serif JP", "Noto Serif JP", serif;
  font-size: 56px;
  font-weight: 600;
  color: #dde1e8;
  margin: -10px 0 0;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* 画像 */
.corp-vision__image {
  margin-bottom: 56px;
}

.corp-vision__image img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

/* 本文 */
.corp-vision__body {
  font-size: 13px;
  line-height: 2;
  color: #555;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.corp-vision__body p {
  margin: 0 0 8px;
}

.corp-vision__body p:last-child {
  margin-bottom: 0;
}

/* CTA VISIONボタン */
.corp-vision__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 11px 40px;
  background: linear-gradient(to right, #0a0a0a, #102340);
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  transition: opacity 0.3s, transform 0.3s;
}

.corp-vision__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .corp-vision {
    padding: 90px 32px 80px;
  }

  .corp-vision__heading-en {
    font-size: 56px;
    margin-top: -22px;
  }

  .corp-vision__image {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .corp-vision {
    padding: 104px 24px 104px;
  }

  .corp-vision__heading-wrap {
    margin-bottom: 32px;
  }

  .corp-vision__heading-sub {
    font-size: 16px;
  }

  .corp-vision__heading-main {
    font-size: 22px;
  }

  .corp-vision__heading-en {
    font-size: 44px;
    margin-top: -10px;
  }

  .corp-vision__image {
    margin-bottom: 32px;
  }

  .corp-vision__body {
    font-size: 12px;
    line-height: 1.9;
    text-align: left;
    margin-bottom: 36px;
  }

  .corp-vision__btn {
    min-width: 180px;
    padding: 14px 28px;
    font-size: 13px;
  }
}

/* ========== Corporate MESSAGE ========== */
.corp-message {
  position: relative;
  padding: 160px 40px 160px;
  color: #fff;
  background: #e9f1f7;
  z-index: 0;
}

.corp-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1525 0%, #0f1f3a 60%, #0a1525 100%);
  clip-path: polygon(0 5vh, 100% 0, 100% calc(100% - 5vh), 0 100%);
  z-index: -1;
}

.corp-message__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 左：テキスト */
.corp-message__heading-wrap {
  position: relative;
  margin-bottom: 14px;
}

.corp-message__heading-jp {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.corp-message__heading-en {
  font-family: "Source Han Serif JP", "Noto Serif JP", serif;
  font-size: 56px;
  font-weight: 600;
  color: #1c3a5c;
  margin: -10px 0 0;
  letter-spacing: 0.1em;
  line-height: 1;
}

.corp-message__title {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 28px;
  letter-spacing: 0.06em;
}

.corp-message__body {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.corp-message__body p {
  margin: 0 0 14px;
}

.corp-message__body p:last-child {
  margin-bottom: 0;
}

/* 番号付き段落（①②）にインデントを当てる */
.corp-message__body p:not(:first-of-type) {
  margin-left: 16px;
}

.corp-message__more {
  display: block;
  margin-top: 28px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: 0;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #136db6;
  text-decoration: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.3s;
}

.corp-message__more:hover {
  opacity: 0.7;
}

/* ========== Corporate Modal (代表メッセージ全文) ========== */
.corp-modal {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9985;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.corp-modal[hidden] {
  display: none;
}

.corp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 30, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: corp-modal-fade 0.4s ease both;
}

.corp-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 150px);
  margin: 0;
  background: #fff;
  color: #15181c;
  padding: 64px 56px 56px;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: corp-modal-slide 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.corp-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #15181c;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.corp-modal__close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

.corp-modal__eyebrow {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: #136db6;
  margin: 0 0 16px;
}

.corp-modal__title {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 28px;
  font-weight: 600;
  color: #15181c;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
}

.corp-modal__subtitle {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  color: #2a3a64;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e3e6ec;
  letter-spacing: 0.04em;
}

.corp-modal__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.05;
  color: #2a2a2a;
  letter-spacing: 0.03em;
}

.corp-modal__body p {
  margin: 0 0 1.6em;
}

.corp-modal__sign {
  margin-top: 32px;
  text-align: right;
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 14px;
  color: #15181c;
  letter-spacing: 0.05em;
}

.corp-modal__footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e3e6ec;
  text-align: center;
}

.corp-modal__close-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 32px;
  background: #15181c;
  color: #fff;
  border: 1px solid #15181c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.corp-modal__close-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@keyframes corp-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes corp-modal-slide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 768px) {
  .corp-modal {
    top: 64px;
    padding: 16px;
  }

  .corp-modal__panel {
    padding: 56px 24px 32px;
    max-height: calc(100vh - 180px);
  }

  .corp-modal__title {
    font-size: 22px;
  }

  .corp-modal__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .corp-modal__body {
    font-size: 13px;
  }
}

/* 右：写真＋ボタン */
.corp-message__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.corp-message__photo {
  width: 100%;
  overflow: hidden;
  background: #1a2a3a;
  aspect-ratio: 16 / 11;
}

.corp-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.corp-message__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  padding: 11px 40px;
  background: linear-gradient(to right, #314b6f, #112454);
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  transition: opacity 0.3s, transform 0.3s;
}

.corp-message__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .corp-message {
    padding: 130px 32px;
  }

  .corp-message::before {
    clip-path: polygon(0 5vh, 100% 0, 100% calc(100% - 5vh), 0 100%);
  }

  .corp-message__inner {
    gap: 48px;
  }

  .corp-message__heading-en {
    font-size: 56px;
  }
}

@media screen and (max-width: 960px) {
  .corp-message::before {
    clip-path: polygon(0 2.5vh, 100% 0, 100% calc(100% - 2.5vh), 0 100%);
  }
}

@media screen and (max-width: 768px) {
  .corp-message {
    padding: 100px 24px;
  }

  .corp-message::before {
    clip-path: polygon(0 2.5vh, 100% 0, 100% calc(100% - 2.5vh), 0 100%);
  }

  .corp-message__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .corp-message__heading-jp {
    font-size: 18px;
  }

  .corp-message__heading-en {
    font-size: 44px;
  }

  .corp-message__title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .corp-message__body {
    font-size: 12px;
    line-height: 1.9;
  }

  .corp-message__photo {
    aspect-ratio: 4 / 3;
  }

  .corp-message__btn {
    padding: 14px 28px;
    font-size: 13px;
  }
}

/* ========== Corporate BUSINESS ========== */
.corp-business {
  background: linear-gradient(to bottom, #e9f1f7, #e6ecf1);
  padding: 90px 40px;
  color: #15181c;
}

.corp-business__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
}

/* 左：テキスト */
.corp-business__heading-wrap {
  margin-bottom: 28px;
}

.corp-business__heading-jp {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  color: #15181c;
  margin: 0 0 6px;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.corp-business__heading-en {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2d5a9e;
  margin: 0;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-business__heading-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 3px solid #2d5a9e;
  background: transparent;
  display: inline-block;
  position: relative;
  animation: corp-heading-pulse 2.4s ease-out infinite;
}

@keyframes corp-heading-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 90, 158, 0.55);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(45, 90, 158, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 90, 158, 0);
  }
}

.corp-business__desc {
  font-size: 13px;
  line-height: 2;
  color: #555;
  margin: 0 0 36px;
  letter-spacing: 0.05em;
}

.corp-business__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 11px 40px;
  background: linear-gradient(to right, #0a0a0a, #102340);
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  transition: opacity 0.3s, transform 0.3s;
}

.corp-business__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* 右：画像（4パネル横並び） */
.corp-business__panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.corp-business__panel {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #1a2a3a;
}

.corp-business__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .corp-business {
    padding: 72px 32px;
  }

  .corp-business__inner {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }

  .corp-business__heading-jp {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .corp-business {
    padding: 56px 24px;
  }

  .corp-business__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .corp-business__heading-wrap {
    align-items: center;
    justify-content: center;
  }

  .corp-business__heading-en {
    justify-content: center;
  }

  .corp-business__text {
    align-items: center;
  }

  .corp-business__btn {
    margin-left: auto;
    margin-right: auto;
  }

  .corp-business__heading-jp {
    font-size: 22px;
  }

  .corp-business__desc {
    font-size: 12px;
    margin-bottom: 24px;
    text-align: left;
  }

  .corp-business__desc br {
    display: none;
  }

  .corp-business__btn {
    min-width: 180px;
    padding: 14px 28px;
    font-size: 13px;
  }

  .corp-business__panels {
    gap: 4px;
  }

  .corp-business__panel {
    aspect-ratio: 9 / 16;
  }
}

/* ========== Corporate CASE ========== */
.corp-case {
  background: #e6ecf1;
  padding: 90px 40px 100px;
  color: #15181c;
}

.corp-case__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ヘッダー */
.corp-case__header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 56px;
}

.corp-case__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.corp-case__head-right .corp-case__btn {
  margin-top: auto;
}

.corp-case__heading-wrap {
  margin-bottom: 24px;
}

.corp-case__heading-jp {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  color: #15181c;
  margin: 0 0 6px;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.corp-case__heading-en {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2d5a9e;
  margin: 0;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-case__heading-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 3px solid #2d5a9e;
  background: transparent;
  display: inline-block;
  position: relative;
  animation: corp-heading-pulse 2.4s ease-out infinite;
}

.corp-case__stat {
  margin: 0 0 28px;
}

.corp-case__stat img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}

.corp-case__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 11px 40px;
  background: linear-gradient(to right, #0a0a0a, #102340);
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  transition: opacity 0.3s, transform 0.3s;
}

.corp-case__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.corp-case__catch {
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  color: #15181c;
  margin: 0 0 18px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.corp-case__desc {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  margin: 0;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .corp-case {
    padding: 72px 32px;
  }

  .corp-case__header {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .corp-case__heading-jp {
    font-size: 26px;
  }

  .corp-case__catch {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .corp-case {
    padding: 56px 20px;
  }

  /* 並び替え：見出し → catch+desc → カルーセル → stat → btn */
  .corp-case__inner {
    display: flex;
    flex-direction: column;
    /* gap: 28px; */
    text-align: center;
  }

  .corp-case__header {
    display: contents;
  }

  .corp-case__head-left,
  .corp-case__head-right {
    display: contents;
  }

  .corp-case__heading-wrap { order: 1; }
  .corp-case__catch        { order: 2; }
  .corp-case__desc         { order: 3; }
  .case-home__carousel     { order: 4; }
  .corp-case__stat         { order: 5; text-align: center; align-self: center; }
  .corp-case__btn          { order: 6; align-self: center; }

  .corp-case__stat img {
    margin-left: auto;
    margin-right: auto;
  }

  .corp-case__heading-en {
    justify-content: center;
  }

  .corp-case__heading-jp {
    font-size: 22px;
  }

  .corp-case__stat-value {
    font-size: 32px;
  }

  .corp-case__catch {
    font-size: 16px;
    text-align: left;
  }

  .corp-case__catch br {
    display: none;
  }

  .corp-case__desc {
    margin-bottom: 30px;
    text-align: left;
  }

  .corp-case__desc br {
    display: none;
  }
}

/* ========== Corporate LINK CARDS ========== */
.corp-links {
  background: #fff;
  padding: 40px 40px 100px;
}

.corp-links__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.corp-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.corp-links__card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.corp-links__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.corp-links__card:hover .corp-links__bg {
  transform: scale(1.05);
}

.corp-links__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.3s;
}

.corp-links__card:nth-child(1) .corp-links__overlay {
  background: rgba(32, 163, 214, 0.7);
}

.corp-links__card:nth-child(2) .corp-links__overlay {
  background: rgba(14, 58, 115, 0.7);
}

.corp-links__card:nth-child(3) .corp-links__overlay {
  background: rgba(30, 80, 9, 0.7);
}

.corp-links__card:nth-child(4) .corp-links__overlay {
  background: rgba(87, 54, 15, 0.7);
}

.corp-links__card:hover .corp-links__overlay {
  opacity: 0.85;
}

.corp-links__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.corp-links__title {
  font-family: 'Noto Sans JP';
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1;
}

.corp-links__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1024px) {
  .corp-links {
    padding: 32px 32px 80px;
  }

  .corp-links__title {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .corp-links {
    padding: 24px 20px 56px;
  }

  .corp-links__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .corp-links__card {
    aspect-ratio: 4 / 1.4;
  }

  .corp-links__title {
    font-size: 22px;
    letter-spacing: 0.15em;
  }

  .corp-links__sub {
    font-size: 12px;
  }
}

/* ========== Corporate Footer CTA ========== */
.footer-cta--corporate {
  position: relative;
  z-index: 2;
  background: #1f1d1c;
  padding: 40px 20px;
}

.footer-cta--corporate .footer-cta__inner {
  max-width: 1100px;
  align-items: stretch;
}

.footer-cta--corporate .footer-cta__item {
  padding: 0 48px;
  justify-content: flex-start;
}

.footer-cta--corporate .footer-cta__item + .footer-cta__item::before {
  width: 1px;
  background: linear-gradient(to bottom, #373737, #cdcdcd, #373737);
}

.footer-cta--corporate .footer-cta__title {
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer-cta--corporate .footer-cta__text {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.footer-cta__btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  min-width: 240px;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  justify-content: center;
}

.footer-cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.footer-cta__btn-svg {
  flex-shrink: 0;
}

@media screen and (max-width: 1030px) {
  .footer-cta--corporate .footer-cta__item {
    padding: 0 20px;
  }

  .footer-cta--corporate .footer-cta__title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer-cta--corporate .footer-cta__text {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .footer-cta__btn--outline {
    min-width: 0;
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
  }
}

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

  .footer-cta--corporate .footer-cta__item {
    padding: 0;
  }

  .footer-cta--corporate .footer-cta__item + .footer-cta__item::before {
    display: block;
    top: -16px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #373737, #cdcdcd, #373737);
  }

  .footer-cta__btn--outline {
    min-width: 220px;
    width: auto;
  }
}

/* ========== Corporate Site Footer ========== */
.site-footer-corp {
  position: relative;
  z-index: 2;
  background: #0a1832;
  color: #fff;
  padding: 64px 40px 24px;
}

.site-footer-corp__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ----- Header (SNS + CTA) ----- */
.site-footer-corp__header {
  grid-column: 2 / -1;
  grid-row: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  text-align: right;
}

.site-footer-corp__header > * {
  display: inline-flex;
  vertical-align: middle;
}

.site-footer-corp__header > * + * {
  margin-left: 16px;
}

.site-footer-corp__top {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(140px, 0.9fr) minmax(160px, 0.9fr) minmax(220px, 1.1fr);
  grid-template-rows: auto auto;
  gap: 24px 48px;
  align-items: start;
  padding-bottom: 56px;
}

/* ----- Brand block ----- */
.site-footer-corp__brand {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer-corp__logo {
  display: inline-block;
  max-width: 200px;
}

.site-footer-corp__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer-corp__addr {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ----- Center menu columns ----- */
.site-footer-corp__cols {
  display: contents;
}

.site-footer-corp__cols > .site-footer-corp__col:nth-of-type(1) {
  grid-column: 2;
  grid-row: 2;
}

.site-footer-corp__cols > .site-footer-corp__col:nth-of-type(2) {
  grid-column: 3;
  grid-row: 2;
}

.site-footer-corp__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-corp__heading {
  margin: 0 0 16px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer-corp__heading a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}

.site-footer-corp__heading a:hover {
  opacity: 0.7;
}

.site-footer-corp__arrow {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer-corp__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-corp__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  transition: color 0.3s, padding-left 0.3s;
}

.site-footer-corp__menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease, left 0.3s ease;
}

.site-footer-corp__menu a:hover {
  color: #fff;
  padding-left: 14px;
}

.site-footer-corp__menu a:hover::before {
  width: 9px;
}

/* ----- Right column (top-links) ----- */
.site-footer-corp__right {
  grid-column: 4;
  grid-row: 2;
  display: flex;
  flex-direction: column;
}

.site-footer-corp__sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer-corp__sns-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer-corp__sns-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer-corp__sns-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  transition: opacity 0.3s;
}

.site-footer-corp__sns-list a:hover {
  opacity: 0.7;
}

.site-footer-corp__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: linear-gradient(to right, #0e3a73, #126cb5);
  border: 1px solid #d7dde3;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}

.site-footer-corp__cta:hover {
  opacity: 0.85;
}

.site-footer-corp__top-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-corp__top-links .site-footer-corp__heading {
  margin: 0;
}

/* ----- Bottom bar ----- */
.site-footer-corp__bottom {
  display: flex;
  flex-direction: column;
}

.site-footer-corp__bottom-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-corp__legal,
.site-footer-corp__media {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.site-footer-corp__media {
  justify-content: flex-end;
}

.site-footer-corp__copyright {
  margin-top: 16px;
}

.site-footer-corp__legal a,
.site-footer-corp__media a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer-corp__legal a:hover,
.site-footer-corp__media a:hover {
  color: #fff;
}

.site-footer-corp__copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  text-align: center;
}

/* ----- Responsive ----- */
@media screen and (max-width: 1024px) {
  .site-footer-corp__header {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .site-footer-corp__top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 40px 32px;
  }

  .site-footer-corp__brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .site-footer-corp__cols > .site-footer-corp__col:nth-of-type(1),
  .site-footer-corp__cols > .site-footer-corp__col:nth-of-type(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer-corp__right {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

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

  .site-footer-corp__header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .site-footer-corp__sns {
    justify-content: center;
  }

  .site-footer-corp__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }

  .site-footer-corp__cols {
    display: contents;
  }

  .site-footer-corp__bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .site-footer-corp__legal,
  .site-footer-corp__media {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-footer-corp__copyright {
    text-align: center;
  }
}
